Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- namespace App\Config\Demo\Jenjang;
- use App\Config\JenjangConfig;
- use App\Models\Instansi\MAtribut;
- class Sd extends JenjangConfig
- {
- public array $atributNilai = [
- 1 => [
- 'nama' => 'Matematika',
- 'singkat' => 'mat',
- 'type' => MAtribut::FLOAT,
- 'koma' => 2,
- ],
- 2 => [
- 'nama' => 'IPA',
- 'singkat' => 'ipa',
- 'type' => MAtribut::FLOAT,
- 'koma' => 2,
- ],
- 3 => [
- 'nama' => 'IPS',
- 'singkat' => 'ips',
- 'type' => MAtribut::FLOAT,
- 'koma' => 2,
- ],
- 4 => [
- 'nama' => 'Nama Ayah',
- 'singkat' => 'ayah',
- 'type' => MAtribut::TEKS,
- ],
- 5 => [
- 'nama' => 'Bahasa Indonesia',
- 'singkat' => 'bind',
- 'type' => MAtribut::FLOAT,
- 'koma' => 2,
- ],
- 6 => [
- 'nama' => 'Bahasa Inggris',
- 'singkat' => 'bing',
- 'type' => MAtribut::FLOAT,
- 'koma' => 2,
- ],
- ];
- public array $nilaiLulusan = [1, 2, 3, 5, 6];
- public array $ajuanBerkas = [
- 'berkas1' => [
- 'label' => 'Foto Kartu Keluarga (KK) Asli',
- 'size' => [
- 20,
- 1024,
- ],
- 'width' => false,
- 'height' => false,
- 'type' => [
- 'image/jpeg',
- 'image/png',
- ],
- 'is_required' => true,
- 'syarat' => '0',
- 'domisili_dalam' => '0',
- 'domisili_luar' => '0',
- 'lulusan_dalam' => '0',
- 'lulusan_luar' => '0',
- ],
- ];
- public bool $multiKompetensi = false;
- public string $pendataanPrefix = '8';
- public bool $skhunKembar = false;
- public bool $dataSiswa = true;
- public bool $dataSiswaNilai = true;
- public array $dataSiswaEdit = [];
- public int $noUjianUnique = 1;
- public int $noUjianPanjang = 11;
- public int|bool $noUjianDigit = 12;
- public string $noUjianLabel = 'Nomor SKHUN/No Ujian';
- public int $sekolahIdDalam = 21999998;
- public int $sekolahIdLuar = 21999999;
- public int $umurMin = 6;
- public int $umurMaks = 10;
- public string $umurTglAcuan = '2024-07-22';
- public int $tahunLulusMin = 2023;
- public int $kLulusanLuar = 4;
- public bool $dataSiswaPaket = true;
- public bool $dataSiswaPaketMigrasi = true;
- public array $dataSiswaTahun = [];
- public bool $siswaKelurahan = true;
- public bool $siswaKelurahanData = true;
- public bool $siswaKelurahanIsian = true;
- public bool $siswaRadius = true;
- public bool $dukcapil = false;
- public bool $dukcapilNoKK = false;
- public bool $dukcapilSalinSiswa = false;
- public bool $kolomAkreditasi = false;
- public bool $daftarSekaliSemuaJalurTahap = false;
- public int $ajuanBatasan = 1;
- public int $daftarMaks = 1;
- public int $tahapMaks = 1;
- public bool $pindahJalurOtomatis = false;
- }
Advertisement
Add Comment
Please, Sign In to add comment