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 / | server ip : 104.21.89.46 your ip : 172.71.255.47 H O M E |
Filename | /var/www/html/sman1baleendahoppppppp/application/controllers/Dashboard.php |
Size | 2.32 kb |
Permission | rw-r--r-- |
Owner | root : root |
Create time | 04-May-2025 17:23 |
Last modified | 04-May-2025 17:23 |
Last accessed | 07-Jul-2025 02:44 |
Actions | edit | rename | delete | download (gzip) |
View | text | 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 Dashboard extends Admin_Controller {
/**
* Class Constructor
*
* @return Void
*/
public function __construct() {
parent::__construct();
$this->model->clear_expired_session();
$this->load->model([
'm_dashboard',
'm_users',
'm_post_comments',
]);
$this->load->library('user_agent');
$this->load->helper(['form', 'blog']);
}
/**
* Index
* @return Void
*/
public function index() {
$this->vars['title'] = 'Dashboard';
$this->vars['dashboard'] = TRUE;
$this->vars['widget_box'] = $this->m_dashboard->widget_box();
$this->vars['last_logged_in'] = $this->m_users->get_last_login();
$this->vars['recent_comments'] = $this->m_post_comments->get_recent_comments(5);
$this->vars['recaptcha_site_key'] = (NULL !== __session('recaptcha_site_key') && __session('recaptcha_site_key')) ? TRUE : FALSE;
$this->vars['recaptcha_secret_key'] = (NULL !== __session('recaptcha_secret_key') && __session('recaptcha_secret_key')) ? TRUE : FALSE;
$warning = FALSE;
if ( ! $this->vars['recaptcha_site_key'] OR ! $this->vars['recaptcha_secret_key'] ) {
$warning = TRUE;
}
$this->vars['warning'] = $warning;
$this->vars['content'] = 'dashboard';
$this->load->view('backend/index', $this->vars);
}
/**
* Sidebar Collapse
*/
public function sidebar_collapse() {
$collapse = __session('sidebar_collapse') ? false : true;
$this->session->set_userdata('sidebar_collapse', $collapse);
}
/**
* Print All Sessions
*/
public function print_sessions() {
if (__session('user_type') !== 'super_user') return redirect(base_url());
echo '<pre>';
print_r($this->session->userdata());
echo '</pre>';
}
}
/**
* 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 Dashboard extends Admin_Controller {
/**
* Class Constructor
*
* @return Void
*/
public function __construct() {
parent::__construct();
$this->model->clear_expired_session();
$this->load->model([
'm_dashboard',
'm_users',
'm_post_comments',
]);
$this->load->library('user_agent');
$this->load->helper(['form', 'blog']);
}
/**
* Index
* @return Void
*/
public function index() {
$this->vars['title'] = 'Dashboard';
$this->vars['dashboard'] = TRUE;
$this->vars['widget_box'] = $this->m_dashboard->widget_box();
$this->vars['last_logged_in'] = $this->m_users->get_last_login();
$this->vars['recent_comments'] = $this->m_post_comments->get_recent_comments(5);
$this->vars['recaptcha_site_key'] = (NULL !== __session('recaptcha_site_key') && __session('recaptcha_site_key')) ? TRUE : FALSE;
$this->vars['recaptcha_secret_key'] = (NULL !== __session('recaptcha_secret_key') && __session('recaptcha_secret_key')) ? TRUE : FALSE;
$warning = FALSE;
if ( ! $this->vars['recaptcha_site_key'] OR ! $this->vars['recaptcha_secret_key'] ) {
$warning = TRUE;
}
$this->vars['warning'] = $warning;
$this->vars['content'] = 'dashboard';
$this->load->view('backend/index', $this->vars);
}
/**
* Sidebar Collapse
*/
public function sidebar_collapse() {
$collapse = __session('sidebar_collapse') ? false : true;
$this->session->set_userdata('sidebar_collapse', $collapse);
}
/**
* Print All Sessions
*/
public function print_sessions() {
if (__session('user_type') !== 'super_user') return redirect(base_url());
echo '<pre>';
print_r($this->session->userdata());
echo '</pre>';
}
}