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 : 104.21.89.46

your ip : 172.69.130.102

H O M E


Filename/var/www/html/sman1baleendahoppppppp/application/controllers/public/Readmore.php
Size2.4 kb
Permissionrw-r--r--
Ownerroot : root
Create time04-May-2025 17:23
Last modified04-May-2025 17:23
Last accessed04-May-2025 17:23
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 Readmore extends Public_Controller {

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

/**
* Readmore
*/
public function index() {
$this->load->helper(['text', 'form']);
$id = _toInteger($this->uri->segment(2));
if (_isNaturalNumber( $id )) {
$this->vars['query'] = $this->model->RowObject('id', $id, 'posts');
if (filter_var((string) $this->vars['query']->is_deleted, FILTER_VALIDATE_BOOLEAN)) {
redirect(base_url(), 'refresh');
}
if ($this->vars['query']->post_status == 'draft') {
redirect(base_url(), 'refresh');
}
if ($this->vars['query']->post_visibility == 'private' && ! $this->auth->hasLogin()) {
redirect(base_url(), 'refresh');
}
$this->m_posts->set_post_counter($id);
$this->vars['recaptcha_site_key'] = __session('recaptcha_site_key');
$limit = __session('comment_per_page');
$total_rows = $this->m_post_comments->get_post_comments($id)->num_rows();
$this->vars['total_page'] = ceil(_toInteger($total_rows) / _toInteger($limit));
$this->vars['post_comments'] = $this->m_post_comments->get_post_comments($id, $limit);
$this->vars['page_title'] = $this->vars['query']->post_title;
$this->vars['post_type'] = $this->vars['query']->post_type === 'page' ? 'page' : 'post';
$this->vars['post_author'] = $this->model->RowObject('id', $this->vars['query']->post_author, 'users')->user_full_name;
$this->vars['post_counter'] = $this->vars['query']->post_counter;
$this->vars['content'] = 'themes/'.theme_folder().'/single-post';
$this->load->view('themes/'.theme_folder().'/index', $this->vars);
} else {
show_404();
}
}
}