-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5701aec
commit 9fd2612
Showing
30 changed files
with
1,123 additions
and
377 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 15 additions & 22 deletions
37
donjo-app/Controllers/Hom_desa.php → donjo-app/Controllers/Siteman/Dashboard.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
namespace App\Models; | ||
|
||
use CodeIgniter\Model; | ||
|
||
class SettingModul extends Model | ||
{ | ||
protected $table = 'setting_modul'; | ||
protected $primaryKey = 'id'; | ||
protected $useAutoIncrement = true; | ||
protected $returnType = 'array'; | ||
protected $useSoftDeletes = false; | ||
protected $protectFields = true; | ||
protected $allowedFields = [ | ||
'id', | ||
'modul', | ||
'url', | ||
'aktif', | ||
'ikon', | ||
'urut', | ||
'level', | ||
'hidden', | ||
]; | ||
} |
Oops, something went wrong.