Файл: Application/system/controllers/admin_pages.php
Строк: 18
<?php
if( !$this->network->id ) {
$this->redirect('home');
}
if( !$this->user->is_logged ) {
$this->redirect('home');
}
$db2->query('SELECT 1 FROM users WHERE iduser="'.$this->user->id.'" AND is_network_admin=1 LIMIT 1');
if( 0 == $db2->num_rows() ) {
$this->redirect('dashboard');
}
/*************************************************************************/
// needed before proceeding
require_once('_all-required-language.php');
$this->load_langfile('global/global.php');
$this->load_langfile('inside/admin.php');
/*************************************************************************/
require_once('_all-required-dashboard-admin.php');
/*************************************************************************/
$r = $this->db2->query('SELECT * FROM pages');
while( $obj = $this->db2->fetch_object($r) ) {
$D->{$obj->code} = $obj->texthtml;
}
/*************************************************************************/
$D->optionactive_admin = 2;
$this->load_template('admin_pages.php');
?>