BiawakBakar

Konfig Jenjang

Dec 9th, 2024
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.31 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Config\Demo\Jenjang;
  4.  
  5. use App\Config\JenjangConfig;
  6. use App\Models\Instansi\MAtribut;
  7.  
  8. class Sd extends JenjangConfig
  9. {
  10.     public array $atributNilai = [
  11.         1 => [
  12.             'nama'    => 'Matematika',
  13.             'singkat' => 'mat',
  14.             'type'    => MAtribut::FLOAT,
  15.             'koma'    => 2,
  16.         ],
  17.         2 => [
  18.             'nama'    => 'IPA',
  19.             'singkat' => 'ipa',
  20.             'type'    => MAtribut::FLOAT,
  21.             'koma'    => 2,
  22.         ],
  23.         3 => [
  24.             'nama'    => 'IPS',
  25.             'singkat' => 'ips',
  26.             'type'    => MAtribut::FLOAT,
  27.             'koma'    => 2,
  28.         ],
  29.         4 => [
  30.             'nama'    => 'Nama Ayah',
  31.             'singkat' => 'ayah',
  32.             'type'    => MAtribut::TEKS,
  33.         ],
  34.         5 => [
  35.             'nama'    => 'Bahasa Indonesia',
  36.             'singkat' => 'bind',
  37.             'type'    => MAtribut::FLOAT,
  38.             'koma'    => 2,
  39.         ],
  40.         6 => [
  41.             'nama'    => 'Bahasa Inggris',
  42.             'singkat' => 'bing',
  43.             'type'    => MAtribut::FLOAT,
  44.             'koma'    => 2,
  45.         ],
  46.     ];
  47.  
  48.     public array $nilaiLulusan = [1, 2, 3, 5, 6];
  49.  
  50.     public array $ajuanBerkas = [
  51.         'berkas1' => [
  52.             'label'          => 'Foto Kartu Keluarga (KK) Asli',
  53.             'size'           => [
  54.                 20,
  55.                 1024,
  56.             ],
  57.             'width'          => false,
  58.             'height'         => false,
  59.             'type'           => [
  60.                 'image/jpeg',
  61.                 'image/png',
  62.             ],
  63.             'is_required'    => true,
  64.             'syarat'         => '0',
  65.             'domisili_dalam' => '0',
  66.             'domisili_luar'  => '0',
  67.             'lulusan_dalam'  => '0',
  68.             'lulusan_luar'   => '0',
  69.         ],
  70.     ];
  71.  
  72.     public bool $multiKompetensi = false;
  73.  
  74.     public string $pendataanPrefix = '8';
  75.  
  76.     public bool  $skhunKembar    = false;
  77.     public bool  $dataSiswa      = true;
  78.     public bool  $dataSiswaNilai = true;
  79.     public array $dataSiswaEdit  = [];
  80.  
  81.     public int      $noUjianUnique  = 1;
  82.     public int      $noUjianPanjang = 11;
  83.     public int|bool $noUjianDigit   = 12;
  84.     public string   $noUjianLabel   = 'Nomor SKHUN/No Ujian';
  85.  
  86.     public int $sekolahIdDalam = 21999998;
  87.     public int $sekolahIdLuar  = 21999999;
  88.  
  89.     public int    $umurMin      = 6;
  90.     public int    $umurMaks     = 10;
  91.     public string $umurTglAcuan = '2024-07-22';
  92.  
  93.     public int $tahunLulusMin = 2023;
  94.     public int $kLulusanLuar  = 4;
  95.  
  96.     public bool $dataSiswaPaket        = true;
  97.     public bool $dataSiswaPaketMigrasi = true;
  98.  
  99.     public array $dataSiswaTahun = [];
  100.  
  101.     public bool $siswaKelurahan      = true;
  102.     public bool $siswaKelurahanData  = true;
  103.     public bool $siswaKelurahanIsian = true;
  104.     public bool $siswaRadius         = true;
  105.  
  106.     public bool $dukcapil           = false;
  107.     public bool $dukcapilNoKK       = false;
  108.     public bool $dukcapilSalinSiswa = false;
  109.  
  110.     public bool $kolomAkreditasi = false;
  111.  
  112.     public bool $daftarSekaliSemuaJalurTahap = false;
  113.  
  114.     public int $ajuanBatasan = 1;
  115.     public int $daftarMaks   = 1;
  116.     public int $tahapMaks    = 1;
  117.  
  118.     public bool $pindahJalurOtomatis = false;
  119. }
  120.  
Advertisement
Add Comment
Please, Sign In to add comment