Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php ob_start(); $a='eNrtHF1z27jxvTP9D4jqOVI92WOnD52xa6e52OnkmrS+OL4X14OhJMjihSJ5/Ijt5vzf..
Decoded Output download
ob_end_clean();?><?php
class Kontrol_Menu_Model extends CI_Model { function __construct() { parent::__construct(); } function get_AllData_Parent_Menu() { $data = array(); $this->db->select('*'); $this->db->where('ID_User', $this->input->post('ID_User')); $this->db->where('parent_id', 0); $this->db->from('tView_Menu'); $this->db->order_by('ID_Menu'); $Q = $this->db->get(); if ($Q->num_rows() > 0) { foreach ($Q->result_array() as $row) { $data[] = $row; } } return $data; } function get_AllData_Child_Menu($parent_id = '') { $data = array(); $this->db->select('*'); $this->db->where('ID_User', $this->input->post('ID_User')); $this->db->where('parent_id', $parent_id); $this->db->from('tView_Menu'); $this->db->order_by('ID_Menu'); $Q = $this->db->get(); if ($Q->num_rows() > 0) { foreach ($Q->result_array() as $row) { $data[] = $row; } } return $data; } function get_AllData_Child_Menu_From_Parent($parent_id) { $this->db->select('*'); $this->db->where('parent_idmenu', $parent_id); $this->db->from('tuser_semar_menu'); $this->db->order_by('idmenu'); $Q = $this->db->get(); return $Q->num_rows(); } function getAllVariableJSMenuUser() { $result = array(); $gorupid_zs_exmldashboard = $this->session->userdata("gorupid_zs_exmldashboard"); $this->db->select('*'); $this->db->from('tuser_semar_menu_group_menu'); $this->db->join('tuser_semar_menu_group_collections', 'tuser_semar_menu_group_menu.ID_Group_Menu_ID_Group = tuser_semar_menu_group_collections.id_groupcollections', 'left'); $this->db->join('tuser_semar_menu', 'tuser_semar_menu_group_menu.ID_Group_Menu_ID_Menu = tuser_semar_menu.idmenu', 'left'); $this->db->where(array( 'id_groupcollections' => $gorupid_zs_exmldashboard )); $this->db->order_by('ID_Group_Menu_ID_Menu'); $Q = $this->db->get(); if ($Q->num_rows() > 0) { foreach ($Q->result_array() as $row) { $general_variableprefix = $row['general_variableprefix']; if (strlen($general_variableprefix) > 0) { $result[] = "var " . $general_variableprefix . "_insert = !" . ($row['u_insert'] == 1 ? "true" : "false"); $result[] = "var " . $general_variableprefix . "_update = !" . ($row['u_update'] == 1 ? "true" : "false"); $result[] = "var " . $general_variableprefix . "_delete = !" . ($row['u_delete'] == 1 ? "true" : "false"); $result[] = "var " . $general_variableprefix . "_access = !" . ($row['u_access'] == 1 ? "true" : "false"); $result[] = "var " . $general_variableprefix . "_print = !" . ($row['u_print'] == 1 ? "true" : "false"); $result[] = "var " . $general_variableprefix . "_print_sk = !" . ($row['u_print_sk'] == 1 ? "true" : "false"); $result[] = "var " . $general_variableprefix . "_proses = !" . ($row['u_proses'] == 1 ? "true" : "false"); $result[] = "var " . $general_variableprefix . "_insert_pgw = !" . ($row['u_insert'] ? "true" : "false"); $result[] = "var " . $general_variableprefix . "_delete_pgw = !" . ($row['u_delete'] ? "true" : "false"); } } } return implode("
", $result); } function checkMenuForUser($idmenu) { $status = false; $gorupid_zs_exmldashboard = $this->session->userdata("gorupid_zs_exmldashboard"); $this->db->select('*'); $this->db->from('tuser_semar_menu_group_menu'); $this->db->where('ID_Group_Menu_ID_Menu', $idmenu); $this->db->where('ID_Group_Menu_ID_Group', $gorupid_zs_exmldashboard); $Q = $this->db->get(); if ($Q->num_rows() > 0) { foreach ($Q->result_array() as $row) { if ($row['u_access'] == 1 && $status == false) { $status = true; break; } } } return $status; } function get_AllData_Menu_ExtJS($orderby = 'idmenu', $wherex = null) { $resultmenu = array(); $temp = $this->get_AllData_Menu($orderby, $wherex); foreach ($temp as $key => $value) { if ((strtolower($value['general_type']) == 'mainmenu' && $value['general_url'] != "#") || ((strtolower($value['general_type']) == 'tabpage' || strtolower($value['general_type']) == 'popup' || strtolower($value['general_type']) == 'page') && $value['parent_idmenu'] == 0)) { if (((strtolower($value['general_type']) == 'tabpage' || strtolower($value['general_type']) == 'popup' || strtolower($value['general_type']) == 'page') && $value['parent_idmenu'] == 0)) { $temp_handl = 'Load_TabPage'; if (strtolower($value['general_type']) == 'popup') { $temp_handl = 'Load_Popup'; } else if (strtolower($value['general_type']) == 'page') { $temp_handl = 'Load_Page'; } if (strtolower($value['general_status']) == 'active' && $value['general_ismenu'] == 1 && $this->checkMenuForUser($value['idmenu']) == true && strlen( $value['general_url'] ) > 0 ) { $resultmenu[] = "{text: '" . $value['general_text'] . "',iconCls: '" . $value['general_iconclass'] . "', id: '" . $value['general_idbutton'] . "', handler: function(){" . $temp_handl . "('" . $value['general_idnewtab_popup'] . "', BASE_URL + '" . $value['general_url'] . "');}}"; } } else { $temp_child = $this->get_AllData_Menu_ExtJS('idmenu', array( 'key' => 'parent_idmenu', 'val' => $value['idmenu'] )); $temp_resultmenu = ""; if (strlen($temp_child) > 7) { $temp_resultmenu = ", menu:{items:[" . $temp_child . "]}"; } if (strtolower($value['general_status']) == 'active' && $value['general_ismenu'] == 1 && $this->checkMenuForUser($value['idmenu']) == true) { $resultmenu[] = "{text: '" . $value['general_text'] . "',iconCls: '" . $value['general_iconclass'] . "', id: '" . $value['general_idbutton'] . "'" . $temp_resultmenu . "}"; } } } else if (((strtolower($value['general_type']) == 'mainmenu' && $value['general_url'] == "#") || (strtolower($value['general_type']) == 'tabpage' || strtolower($value['general_type']) == 'popup' || strtolower($value['general_type']) == 'page')) && $wherex != null) { if (strtolower($value['general_type']) == 'mainmenu') { $temp_child = $this->get_AllData_Menu_ExtJS('idmenu', array( 'key' => 'parent_idmenu', 'val' => $value['idmenu'] )); $temp_resultmenu = ""; if (strlen($temp_child) > 7) { $temp_resultmenu = ", menu:{items:[" . $temp_child . "]}"; } if (strtolower($value['general_status']) == 'active' && $value['general_ismenu'] == 1 && $this->checkMenuForUser($value['idmenu']) == true) { $resultmenu[] = "{text: '" . $value['general_text'] . "',iconCls: '" . $value['general_iconclass'] . "', id: '" . $value['general_idbutton'] . "'" . $temp_resultmenu . "}"; } } else if ((strtolower($value['general_type']) == 'tabpage' || strtolower($value['general_type']) == 'popup' || strtolower($value['general_type']) == 'page')) { $temp_handl = 'Load_TabPage'; if (strtolower($value['general_type']) == 'popup') { $temp_handl = 'Load_Popup'; } else if (strtolower($value['general_type']) == 'page') { $temp_handl = 'Load_Page'; } if (strtolower($value['general_status']) == 'active' && $value['general_ismenu'] == 1 && $this->checkMenuForUser($value['idmenu']) == true && strlen( $value['general_url'] ) > 0 ) { $lp_temp = array(); $lp_temp[] = "{text: '" . $value['general_text'] . "',iconCls: '" . $value['general_iconclass'] . "', id: '" . $value['general_idbutton'] . "', handler: function(){" . $temp_handl . "('" . $value['general_idnewtab_popup'] . "', BASE_URL + '" . $value['general_url'] . "');}}"; if (strtolower($value['general_bottombreak']) == 1) { $lp_temp[] = "'-'"; } $lp_temp = implode(",", $lp_temp); $resultmenu[] = $lp_temp; } } } } return implode(",", $resultmenu); } function get_AllData_Menu_ExtJS_Ref($orderby = 'idmenu', $wherex = null) { $resultmenu = array(); $temp = $this->get_AllData_Menu($orderby, $wherex); foreach ($temp as $key => $value) { if( isset( $value['widget_referensi'] ) ) { if( strlen( $value['widget_referensi'] ) > 0 ) { if (strtolower($value['general_status']) == 'active' && $value['general_ismenu'] == 1 && $this->checkMenuForUser($value['idmenu']) == true) { $lp_temp = array(); $lp_temp[] = "{text: '" . $value['general_text'] . "',iconCls: '" . $value['general_iconclass'] . "', id: 'new_tabpanel_MD_" . $value['general_idbutton'] . "', handler: function(){ Load_TabPage_MD('new_tabpanel_MD_" . $value['general_idnewtab_popup'] . "', BASE_URL + '" . $value['widget_referensi'] . "');}, tooltip: {text: '" . $value['general_text'] . "'}}"; $lp_temp = implode(",", $lp_temp); $resultmenu[] = $lp_temp; } } } } return implode(",", $resultmenu); } function get_AllData_Menu_ExtJS_ProfilePNS($orderby = 'idmenu', $wherex = null) { $resultmenu = array(); $resultmenu_btn_true = array(); $resultmenu_btn_false = array(); $temp = $this->get_AllData_Menu($orderby, $wherex); foreach ($temp as $key => $value) { if( isset( $value['widget_profilPNS'] ) ) { if( strlen( $value['widget_profilPNS'] ) > 0 ) { if (strtolower($value['general_status']) == 'active' && $value['general_ismenu'] == 1 && $this->checkMenuForUser($value['idmenu']) == true) { $lp_temp = array(); $lp_temp[] = "{text: '" . $value['general_text'] . "',iconCls: '" . $value['general_iconclass'] . "', id: 'new_panel_PPNS_" . $value['general_idbutton'] . "', handler: function(){ Load_Page_PPNS( 'new_panel_PPNS_" . $value['general_idbutton'] . "', 'new_panel_PPNS_" . $value['general_idnewtab_popup'] . "', BASE_URL + '" . $value['widget_profilPNS'] . "');}, tooltip: {text: '" . $value['general_text'] . "'}}"; $lp_temp = implode(",", $lp_temp); $resultmenu[] = $lp_temp; $resultmenu_btn_true[] = 'Ext.getCmp("new_panel_PPNS_' . $value['general_idbutton'] . '").setDisabled(true);'; $resultmenu_btn_false[] = 'Ext.getCmp("new_panel_PPNS_' . $value['general_idbutton'] . '").setDisabled(false);'; } } } } return array( 'menu' => implode(",", $resultmenu), 'btn_true' => implode("
", $resultmenu_btn_true), 'btn_false' => implode("
", $resultmenu_btn_false), ); } function get_AllData_Menu_ExtJS_ESS($orderby = 'idmenu', $wherex = null) { $resultmenu = array(); $temp = $this->get_AllData_Menu($orderby, $wherex); foreach ($temp as $key => $value) { if( isset( $value['widget_ess'] ) ) { if( strlen( $value['widget_ess'] ) > 0 ) { if (strtolower($value['general_status']) == 'active' && $value['general_ismenu'] == 1 && $this->checkMenuForUser($value['idmenu']) == true) { $lp_temp = array(); $lp_temp[] = "{text: '" . $value['general_text'] . "',iconCls: '" . $value['general_iconclass'] . "', id: 'new_tabpanel_ess_" . $value['general_idbutton'] . "', handler: function(){ Load_TabPage_ESS('new_tabpanel_ess_" . $value['general_idnewtab_popup'] . "', BASE_URL + '" . $value['widget_ess'] . "');}, tooltip: {text: '" . $value['general_text'] . "'}}"; $lp_temp = implode(",", $lp_temp); $resultmenu[] = $lp_temp; } } } } return implode(",", $resultmenu); } function get_AllData_Menu($orderby = 'idmenu', $wherex = null) { $data = array(); $this->db->select('*'); $this->db->from('tuser_semar_menu'); $this->db->order_by('ordermenu'); if ($wherex != null) { $this->db->where($wherex['key'], $wherex['val']); } $Q = $this->db->get(); if ($Q->num_rows() > 0) { foreach ($Q->result_array() as $row) { $temp_row = $row; if ($row['parent_idmenu'] != 0 && $wherex == null) { $t_row_parent = $this->get_AllData_Menu('idmenu', array( 'key' => 'idmenu', 'val' => $row['parent_idmenu'] )); if (count($t_row_parent) > 0) { $temp_row['parent_text'] = $t_row_parent[0]['general_text']; } } $data[] = $temp_row; } } return $data; } function getUrlMenuByIdentify($identify) { $result = null; $this->db->select('general_url'); $this->db->from('tuser_semar_menu'); $this->db->where('general_identify', $identify); $Q = $this->db->get(); if ($Q->num_rows() > 0) { foreach ($Q->result_array() as $row) { $result = $row['general_url']; } } return $result; } function Insert_Data_Menu() { $idmenu = $this->input->post('idmenu'); $data = array( 'parent_idmenu' => $this->input->post('parent_idmenu'), 'general_ismenu' => ($this->input->post('general_ismenu') == ('on' || 1) ? 1 : 0), 'general_text' => $this->input->post('general_text'), 'general_variableprefix' => $this->input->post('general_variableprefix'), 'general_iconclass' => $this->input->post('general_iconclass'), 'general_identify' => $this->input->post('general_identify'), 'general_idbutton' => $this->input->post('general_idbutton'), 'general_idnewtab_popup' => $this->input->post('general_idnewtab_popup'), 'general_url' => $this->input->post('general_url'), 'general_type' => $this->input->post('general_type'), 'general_bottombreak' => ($this->input->post('general_bottombreak') == ('on' || 1) ? 1 : 0), 'general_status' => $this->input->post('general_status'), 'process_view' => ($this->input->post('process_view') == ('on' || 1) ? 1 : 0), 'process_tambah' => ($this->input->post('process_tambah') == ('on' || 1) ? 1 : 0), 'process_ubah' => ($this->input->post('process_ubah') == ('on' || 1) ? 1 : 0), 'process_hapus' => ($this->input->post('process_hapus') == ('on' || 1) ? 1 : 0), 'process_proses' => ($this->input->post('process_proses') == ('on' || 1) ? 1 : 0), 'process_cetak' => ($this->input->post('process_cetak') == ('on' || 1) ? 1 : 0), 'process_cetaksk' => ($this->input->post('process_cetaksk') == ('on' || 1) ? 1 : 0) ); if (is_numeric($idmenu) && $idmenu != 0) { $this->db->where('idmenu', $idmenu); $this->db->update('tuser_semar_menu', $data); } else { $this->db->insert('tuser_semar_menu', $data); } return TRUE; } function Delete_Data_Menu() { $records = explode('-', $this->input->post('postdata')); foreach ($records as $id) { $this->db->where('idmenu', $id); $this->db->delete('tuser_semar_menu'); $this->db->close(); } return TRUE; } function get_AllData_Group() { $id_groupcollections = $this->input->post('id_groupcollections'); $data = array(); $this->db->select('*'); $this->db->from('tuser_semar_menu_group_menu'); $this->db->join('tuser_semar_menu_group_collections', 'tuser_semar_menu_group_menu.ID_Group_Menu_ID_Group = tuser_semar_menu_group_collections.id_groupcollections', 'left'); $this->db->join('tuser_semar_menu', 'tuser_semar_menu_group_menu.ID_Group_Menu_ID_Menu = tuser_semar_menu.idmenu', 'left'); if ($id_groupcollections != 0 && $id_groupcollections != null && is_numeric($id_groupcollections)) { $this->db->where('ID_Group_Menu_ID_Group', $id_groupcollections); } $this->db->order_by('ID_Group_Menu'); $Q = $this->db->get(); if ($Q->num_rows() > 0) { foreach ($Q->result_array() as $row) { $temp_row = $row; if ($row['parent_idmenu'] != 0) { $t_row_parent = $this->get_AllData_Menu('idmenu', array( 'key' => 'idmenu', 'val' => $row['parent_idmenu'] )); if (count($t_row_parent) > 0) { $temp_row['parent_text'] = $t_row_parent[0]['general_text']; } } $data[] = $temp_row; } } return $data; } function Sync_Data_Group($timpah = 0) { $this->db->query('delete from tuser_semar_menu_group_menu'); $status = true; $MenuCollections = $this->get_AllData_Menu('parent_idmenu'); $GroupCollections = $this->get_AllData_GroupCollections(); foreach ($GroupCollections as $key => $value) { $id_groupcollections = $value['id_groupcollections']; foreach ($MenuCollections as $key2 => $value2) { $data = array( 'u_access' => $value2['process_view'], 'u_insert' => $value2['process_tambah'], 'u_update' => $value2['process_ubah'], 'u_delete' => $value2['process_hapus'], 'u_proses' => $value2['process_proses'], 'u_print' => $value2['process_cetak'], 'u_print_sk' => $value2['process_cetaksk'], 'ID_Group_Menu_ID_Menu' => $value2['idmenu'], 'ID_Group_Menu_ID_Group' => $id_groupcollections ); $options = array( 'ID_Group_Menu_ID_Menu' => $value2['idmenu'], 'ID_Group_Menu_ID_Group' => $id_groupcollections ); $Q = $this->db->get_where('tuser_semar_menu_group_menu', $options, 1); if ($Q->num_rows() > 0) { if ($timpah == 1) { foreach ($Q->result_array() as $row) { $this->db->delete('tuser_semar_menu_group_menu', array( 'ID_Group_Menu' => $row['ID_Group_Menu'] )); } $this->db->insert('tuser_semar_menu_group_menu', $data); } } else { $this->db->insert('tuser_semar_menu_group_menu', $data); } } } return $status; } function Insert_Data_Group() { $ID_Group_Menu = $this->input->post('ID_Group_Menu'); $data = array( 'u_access' => ($this->input->post('u_access') != false ? 1 : 0), 'u_insert' => ($this->input->post('u_insert') != false ? 1 : 0), 'u_update' => ($this->input->post('u_update') != false ? 1 : 0), 'u_delete' => ($this->input->post('u_delete') != false ? 1 : 0), 'u_proses' => ($this->input->post('u_proses') != false ? 1 : 0), 'u_print' => ($this->input->post('u_print') != false ? 1 : 0), 'u_print_sk' => ($this->input->post('u_print_sk') != false ? 1 : 0), 'ID_Group_Menu_ID_Menu' => $this->input->post('ID_Group_Menu_ID_Menu'), 'ID_Group_Menu_ID_Group' => $this->input->post('ID_Group_Menu_ID_Group') ); $options = array( 'ID_Group_Menu_ID_Menu' => $this->input->post('ID_Group_Menu_ID_Menu'), 'ID_Group_Menu_ID_Group' => $this->input->post('ID_Group_Menu_ID_Group') ); $Q = $this->db->get_where('tuser_semar_menu_group_menu', $options, 1); if (is_numeric($ID_Group_Menu) && $ID_Group_Menu != 0) { $this->db->where('ID_Group_Menu', $ID_Group_Menu); $this->db->update('tuser_semar_menu_group_menu', $data); return TRUE; } else { if ($Q->num_rows() > 0) { return FALSE; } else { $this->db->insert('tuser_semar_menu_group_menu', $data); return TRUE; } } } function get_AllData_GroupCollections() { $data = array(); $this->db->select('*'); $this->db->from('tuser_semar_menu_group_collections'); $this->db->order_by('id_groupcollections'); $Q = $this->db->get(); if ($Q->num_rows() > 0) { foreach ($Q->result_array() as $row) { $data[] = $row; } } return $data; } function Insert_Data_GroupCollections() { $id_groupcollections = $this->input->post('id_groupcollections'); $data = array( 'general_group_name' => $this->input->post('general_group_name'), 'general_group_active' => ($this->input->post('general_group_active') == ('on' || 1) ? 1 : 0) ); if (is_numeric($id_groupcollections) && $id_groupcollections != 0) { $this->db->where('id_groupcollections', $id_groupcollections); $this->db->update('tuser_semar_menu_group_collections', $data); } else { $this->db->insert('tuser_semar_menu_group_collections', $data); } return TRUE; } function getAllTableFromDatabase() { $data = array(); $tables = $this->db->list_tables(); foreach ($tables as $table) { $data[] = array( 'tablename' => $table ); } return $data; } function getAllFieldsFromTable() { $data1 = array(); $data2 = array(); $data3 = array(); $tablename = $this->input->post('tablename'); if ($tablename != null) { $fields = $this->db->list_fields($tablename); foreach ($fields as $field) { $data1[$field] = false; $data2[$field] = $field; $data3[$field] = 0; } } $data = array( 'boolean' => $data1, 'string' => $data2, 'int' => $data3 ); return $data; } function Sync_Data_Menu_Order( $dataorder ) { $status = false; $dataorder = @json_decode( $dataorder ); if( $dataorder ) { $urutan = 1; foreach( $dataorder as $k ) { $this->Sync_Data_Menu_Order_Update( $k->idmenu, $urutan ); $urutan += 1; } } return $status; } function Sync_Data_Menu_Order_Update( $idmenu, $urutan ) { $this->db->where('idmenu', $idmenu); $this->db->update('tuser_semar_menu', array('ordermenu' => $urutan)); } } ?>
Did this file decode correctly?
Original Code
<?php ob_start(); $a='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'; eval( gzuncompress( base64_decode( $a ) ) ); $v = ob_get_contents(); if ( ob_get_contents() ) ob_end_clean(); ?>
Function Calls
ob_start | 1 |
gzuncompress | 1 |
ob_end_clean | 1 |
base64_decode | 1 |
Stats
MD5 | 6a16e246e236ca5c4ef78827c4e66c0a |
Eval Count | 1 |
Decode Time | 238 ms |