APPPATH/libraries/Datatables.php [ 340 ]
335
336 $mColArray = $this->ci->input->post('columns');
337
338 $sWhere = '';
339 $search = $this->ci->input->post('search');
340 $sSearch = $this->ci->db->escape_like_str(trim($search['value']));
341 $columns = array_values(array_diff($this->columns, $this->unset_columns));
342
343 if ($sSearch != '') {
344 for ($i = 0; $i < count($mColArray); $i++) {
345 if ($mColArray[$i]['searchable'] == 'true' && !array_key_exists($mColArray[$i]['data'], $this->add_columns)) {
-
{PHP internal call} » MY_Exceptions::error_handler()
-
APPPATH/libraries/Datatables.php [ 340 ] » trim()
335 336 $mColArray = $this->ci->input->post('columns'); 337 338 $sWhere = ''; 339 $search = $this->ci->input->post('search'); 340 $sSearch = $this->ci->db->escape_like_str(trim($search['value'])); 341 $columns = array_values(array_diff($this->columns, $this->unset_columns)); 342 343 if ($sSearch != '') { 344 for ($i = 0; $i < count($mColArray); $i++) { 345 if ($mColArray[$i]['searchable'] == 'true' && !array_key_exists($mColArray[$i]['data'], $this->add_columns)) {
-
APPPATH/libraries/Datatables.php [ 286 ] » Datatables->get_filtering()
281 if (strtolower($output) == 'json') { 282 $this->get_paging(); 283 } 284 285 $this->get_ordering(); 286 $this->get_filtering(); 287 return $this->produce_output(strtolower($output), strtolower($charset)); 288 } 289 290 /** 291 * Generates the LIMIT portion of the query
-
APPPATH/modules/signin/controllers/Signin.php [ 934 ] » Datatables->generate()
929 $this->datatables->where('((a.dokumentasi IS NOT NULL OR a.uraian IS NOT NULL) AND a.foto IS NOT NULL AND a.verifikasi != "tolak")'); 930 } else { 931 $this->datatables->where('((a.dokumentasi IS NULL AND a.uraian IS NULL) OR a.foto IS NULL OR a.verifikasi = "tolak")'); 932 } 933 934 echo $this->datatables->generate(); 935 } 936 }
-
FCPATH/system-3.1.13/core/CodeIgniter.php [ 533 ] » Signin->get_detail_monitoring()
528 /* 529 * ------------------------------------------------------ 530 * Call the requested method 531 * ------------------------------------------------------ 532 */ 533 call_user_func_array(array(&$CI, $method), $params); 534 535 // Mark a benchmark end point 536 $BM->mark('controller_execution_time_( '.$class.' / '.$method.' )_end'); 537 538 /*
-
FCPATH/index.php [ 318 ] » require_once(arguments)
0
/www/wwwroot/portalsekolah.disdik.jambiprov.go.id/system-3.1.13/core/CodeIgniter.php
313 * LOAD THE BOOTSTRAP FILE 314 * -------------------------------------------------------------------- 315 * 316 * And away we go... 317 */ 318 require_once BASEPATH.'core/CodeIgniter.php';