Files
2025-10-17 13:38:25 +07:00

17 lines
437 B
PHP

<?php
class M_menu extends CI_Model {
function index() {
$this->db->order_by('mm_urutan', 'ASC');
$this->db->where('mm_aktif', "1");
$query = $this->db->get('master_menu');
return $query->result();
}
function hakakses($id) {
$this->db->where('mum_tipeuser_id', $id);
$query = $this->db->get('master_user_menu');
return $query->result();
}
}
?>