| Server IP : 103.48.194.25 / Your IP : 216.73.217.33 Web Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.33 System : Linux VMHostDefault 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64 User : sieuthimay ( 1016) PHP Version : 8.2.20 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/thegioimaycongnghiep.vn/public_html/webadmin/libraries/ |
Upload File : |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
class site
{
// Public properties
public $settings = array();
// Protected or private properties
protected $_table;
// Constructor
public function __construct()
{
if (!isset($this->CI))
{
$this->CI =& get_instance();
}
//$this->CI->load->library('user_agent');
//$this->get_site_info();
}
public function load($page, $data = NULL, $layout=FALSE)
{
$data['page'] = $page;
if($layout==TRUE){
$this->CI->load->view('templates/skin_'.$layout, $data);
}else{
$this->CI->load->view('templates/skin', $data);
}
}
public function loadadmin($page, $data = NULL)
{
$data['page'] = $page;
$this->CI->load->view('theme/admin/vnit/skin', $data);
}
// Get Templates Active
public function get_default_template()
{
$this->CI->db->select('duongdan');
$this->CI->db->where('kichhoat', '1');
$query = $this->CI->db->get('giaodien', 1);
if ($query->num_rows() == 1)
{
$row = $query->row_array();
}
return $row['duongdan'];
}
public function get_default_language()
{
$this->CI->db->select('language');
$this->CI->db->where('is_default', '1');
$query = $this->CI->db->get($this->_table['languages'], 1);
if ($query->num_rows() == 1)
{
$row = $query->row_array();
}
return $row['language'];
}
public function get_site_info()
{
/*
$this->CI->db->select('name, value');
$query = $this->CI->db->get($this->_table['settings']);
if ($query->num_rows() > 0)
{
$result = $query->result_array();
foreach ($result as $row)
{
$this->settings[$row['name']] = $row['value'];
}
}
*/
}
public function check_site_status()
{
/*
$this->CI->db->select('name, value');
$this->CI->db->where('name', 'enabled');
$query = $this->CI->db->get($this->_table['settings'], 1);
if ($query->num_rows() == 1)
{
$result = $query->row_array();
if ($result['value'] == 0)
{
$data['offline_reason'] = $this->settings['offline_reason'];
$this->CI->load->view('admin/layout/pages/offline', $data);
die();
}
}
*/
}
public function generate_social_bookmarking_links($post_url, $post_title)
{
/*
$links = '';
if ($this->settings['enable_digg'] == 1)
{
$links = '<a href="http://digg.com/submit?phase=2&url=' . $post_url . '&title=' . $post_title . '" target="_blank">Digg</a>';
}
if ($this->settings['enable_technorati'] == 1)
{
$links .= ($links) ? ' | ' : '';
$links .= '<a href="http://technorati.com/faves?add=' . $post_url . '" target="_blank">Technorati</a>';
}
if ($this->settings['enable_delicious'] == 1)
{
$links .= ($links) ? ' | ' : '';
$links .= '<a href="http://del.icio.us/post?url=' . $post_url . '&title=' . $post_title . '" target="_blank">del.icio.us</a>';
}
if ($this->settings['enable_stumbleupon'] == 1)
{
$links .= ($links) ? ' | ' : '';
$links .= '<a href="http://www.stumbleupon.com/submit?url=' . $post_url . '&title=' . $post_title . '" target="_blank">Stumbleupon</a>';
}
if ($this->settings['enable_reddit'] == 1)
{
$links .= ($links) ? ' | ' : '';
$links .= '<a href="http://reddit.com/submit?url=' . $post_url . '&title=' . $post_title . '" target="_blank">reddit</a>';
}
if ($this->settings['enable_furl'] == 1)
{
$links .= ($links) ? ' | ' : '';
$links .= '<a href="http://www.furl.net/storeIt.jsp?t=' . $post_title . '&u=' . $post_url . '" target="_blank">Furl</a>';
}
return $links;
*/
}
}
/* End of file System.php */
/* Location: ./application/libraries/System.php */