K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / var / www / html / sman1baleendahoppppppp / application / controllers / public /
server ip : 172.67.156.115

your ip : 172.69.59.183

H O M E


Filename/var/www/html/sman1baleendahoppppppp/application/controllers/public/Search.php
Size2 kb
Permissionrw-r--r--
Ownerroot : root
Create time04-May-2025 17:23
Last modified04-May-2025 17:23
Last accessed05-Jul-2025 19:29
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php defined('BASEPATH') OR exit('No direct script access allowed');

/**
* CMS Sekolahku | CMS (Content Management System) dan PPDB/PMB Online GRATIS
* untuk sekolah SD/Sederajat, SMP/Sederajat, SMA/Sederajat, dan Perguruan Tinggi
* @version 2.4.13
* @author Anton Sofyan | https://facebook.com/antonsofyan | [email protected] | 0857 5988 8922
* @copyright (c) 2014-2023
* @link https://sekolahku.web.id
*
* PERINGATAN :
* 1. TIDAK DIPERKENANKAN MENGGUNAKAN CMS INI TANPA SEIZIN DARI PIHAK PENGEMBANG APLIKASI.
* 2. TIDAK DIPERKENANKAN MEMPERJUALBELIKAN APLIKASI INI TANPA SEIZIN DARI PIHAK PENGEMBANG APLIKASI.
* 3. TIDAK DIPERKENANKAN MENGHAPUS KODE SUMBER APLIKASI.
*/

class Search extends Public_Controller {

/**
* Class Constructor
*
* @return Void
*/
public function __construct() {
parent::__construct();
$this->load->helper('text');
$this->load->model('public/m_posts');
}

/**
* Index
* @return Void
*/
public function index() {
if ($_POST) {
$this->load->library('form_validation');
$this->form_validation->set_rules('keyword', 'Kata Kunci Pencarian', 'trim|required|alpha_numeric_spaces|max_length[100]');
$this->form_validation->set_message('required', '{field} wajib diisi.');
$this->form_validation->set_message('alpha_numeric_spaces', '{field} hanya bisa diisi huruf dan angka.');
if (FALSE === $this->form_validation->run()) {
$this->session->unset_userdata('keyword');
$this->vars['query'] = FALSE;
$this->vars['page_title'] = validation_errors();
} else {
$keyword = trim(strip_tags($this->input->post('keyword', true)));
$this->session->set_userdata('keyword', $keyword);
$this->vars['page_title'] = 'Hasil pencarian dengan kata kunci "' . $this->session->keyword . '"';
$this->vars['query'] = $this->m_posts->search($keyword);
}
$this->vars['content'] = 'themes/'.theme_folder().'/search-results';
$this->load->view('themes/'.theme_folder().'/index', $this->vars);
} else {
return redirect(base_url());
}
}
}