本文整理汇总了PHP中get_active_theme函数的典型用法代码示例。如果您正苦于以下问题:PHP get_active_theme函数的具体用法?PHP get_active_theme怎么用?PHP get_active_theme使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了get_active_theme函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct()
{
parent::__construct();
is_installed();
#defined in auth helper
$this->active_theme = get_active_theme();
}
示例2: __construct
function __construct()
{
$this->CI =& get_instance();
$this->CI->config->load('twig');
ini_set('include_path', ini_get('include_path') . PATH_SEPARATOR . APPPATH . 'libraries/Twig');
require_once (string) 'Autoloader.php';
log_message('debug', "Twig Autoloader Loaded");
Twig_Autoloader::register();
if ($this->CI->uri->segment(1) == 'setup') {
$this->_template_dir = $this->CI->config->item('template_dir') . '/install';
} else {
$this->_template_dir = $this->CI->config->item('template_dir') . '/' . get_active_theme();
}
$this->_cache_dir = $this->CI->config->item('cache_dir');
$loader = new Twig_Loader_Filesystem($this->_template_dir);
$this->_twig = new Twig_Environment($loader, array('cache' => $this->_cache_dir, 'debug' => true));
foreach (get_defined_functions() as $functions) {
foreach ($functions as $function) {
$this->_twig->addFunction($function, new Twig_Function_Function($function));
}
}
# untuk decode iframe youtube yang di encode
$filter = new Twig_SimpleFilter('raw_youtube', function ($string) {
if (strpos($string, '<iframe src="http://www.youtube.com/embed/') !== false) {
$string = str_replace('<iframe src="http://www.youtube.com/embed/', '<iframe src="http://www.youtube.com/embed/', $string);
$string .= str_replace('></iframe>', '></iframe>', $string);
}
return $string;
});
$this->_twig->addFilter($filter);
}
示例3: __construct
public function __construct()
{
parent::__construct();
is_installed();
#defined in auth helper
remove_featured_if_expired();
$this->PER_PAGE = get_per_page_value();
#defined in auth helper
$this->active_theme = get_active_theme();
$this->load->model('show_model');
$this->load->model('user/user_model');
$this->load->library('encrypt');
$this->load->helper('text');
$this->output->enable_profiler($this->config->item('debug_site'));
if (isset($_POST['view_orderby'])) {
$this->session->set_userdata('view_orderby', $this->input->post('view_orderby'));
}
if (isset($_POST['view_ordertype'])) {
$this->session->set_userdata('view_ordertype', $this->input->post('view_ordertype'));
}
$system_currency_type = get_settings('realestate_settings', 'system_currency_type', 0);
if ($system_currency_type == 0) {
$system_currency = get_currency_icon(get_settings('realestate_settings', 'system_currency', 'USD'));
} else {
$system_currency = get_settings('realestate_settings', 'system_currency', 'USD');
}
$this->session->set_userdata('system_currency', $system_currency);
$this->form_validation->set_error_delimiters('<div class="alert alert-danger">', '</div>');
}
示例4: __construct
function __construct()
{
parent::__construct();
//$this->auth->check_access('Admin', true);
$this->output->enable_profiler($this->config->item('debug_site'));
$this->load->model(array('Product_model'));
$this->load->helper('form');
$this->active_theme = get_active_theme();
//$this->lang->load('product');
}
示例5: __construct
public function __construct()
{
parent::__construct();
is_installed();
#defined in auth helper
//$this->PER_PAGE = get_per_page_value();#defined in auth helper
$this->PER_PAGE = get_settings('business_settings', 'posts_per_page', 6);
$this->active_theme = get_active_theme();
$this->load->model('review_model');
$this->form_validation->set_error_delimiters('<div class="alert alert-danger">', '</div>');
}
示例6: __construct
public function __construct()
{
parent::__construct();
$this->load->database();
$this->active_theme = get_active_theme();
$this->per_page = get_per_page_value();
#defined in auth helper
$this->form_validation->set_error_delimiters('<div class="alert alert-danger" style="margin-bottom:0;">', '</div>');
$this->load->helper('date');
$this->load->model('auth_model');
}
示例7: __construct
public function __construct()
{
parent::__construct();
is_installed();
#defined in auth helper
$this->load->database();
$this->active_theme = get_active_theme();
$this->load->model('ajax_model');
//$this->load->model('show/post_model');
$this->load->helper('dbcvote');
$this->form_validation->set_error_delimiters('<label class="col-lg-2 control-label"> </label><div class="col-lg-8"><div class="alert alert-danger" style="margin-bottom:0;">', '</div></div>');
//$this->output->enable_profiler(TRUE);
}
示例8: __construct
public function __construct()
{
parent::__construct();
is_installed();
#defined in auth helper
// if(!is_loggedin())
// {
// if(count($_POST)<=0)
// $this->session->set_userdata('req_url',current_url());
// redirect(site_url('account/trylogin'));
// }
$this->per_page = get_per_page_value();
$this->load->database();
$this->active_theme = get_active_theme();
$this->load->model('user/payment_model');
$this->form_validation->set_error_delimiters('<div class="alert alert-danger form-error">', '</div>');
}
示例9: __construct
function __construct()
{
$this->CI =& get_instance();
$this->CI->config->load('twig');
ini_set('include_path', ini_get('include_path') . PATH_SEPARATOR . APPPATH . 'libraries/Twig');
require_once (string) 'Autoloader.php';
log_message('debug', "Twig Autoloader Loaded");
Twig_Autoloader::register();
$this->_template_dir = $this->CI->config->item('template_dir') . '/' . get_active_theme();
$this->_cache_dir = $this->CI->config->item('cache_dir');
$loader = new Twig_Loader_Filesystem($this->_template_dir);
$this->_twig = new Twig_Environment($loader, array('cache' => $this->_cache_dir, 'debug' => true));
foreach (get_defined_functions() as $functions) {
foreach ($functions as $function) {
$this->_twig->addFunction($function, new Twig_Function_Function($function));
}
}
}
示例10: __construct
public function __construct()
{
parent::__construct();
is_installed();
#defined in auth helper
expiration_cron();
//$this->PER_PAGE = get_per_page_value();#defined in auth helper
$this->PER_PAGE = get_settings('business_settings', 'posts_per_page', 6);
$this->active_theme = get_active_theme();
$this->load->model('show_model');
$system_currency_type = get_settings('business_settings', 'system_currency_type', 0);
if ($system_currency_type == 0) {
$system_currency = get_currency_icon(get_settings('business_settings', 'system_currency', 'USD'));
} else {
$system_currency = get_settings('business_settings', 'system_currency', 'USD');
}
$this->session->set_userdata('system_currency', $system_currency);
$this->form_validation->set_error_delimiters('<div class="alert alert-danger">', '</div>');
}
示例11: __construct
public function __construct()
{
parent::__construct();
is_installed();
#defined in auth helper
if (!is_loggedin()) {
if (count($_POST) <= 0) {
$this->session->set_userdata('req_url', current_url());
}
redirect(site_url('account/trylogin'));
}
//$this->per_page = get_per_page_value();
$this->load->database();
$this->active_theme = get_active_theme();
$this->load->model('user_model');
$this->load->model('show/post_model');
$this->load->helper('dbcvote');
$this->form_validation->set_error_delimiters('<label class="col-lg-2 control-label"> </label><div class="col-lg-8"><div class="alert alert-danger" style="margin-bottom:0;">', '</div></div>');
//$this->output->enable_profiler(TRUE);
}
示例12: __construct
public function __construct()
{
parent::__construct();
is_installed();
#defined in auth helper
if (!is_loggedin()) {
$this->load->helper("url_helper");
if ($this->uri->segment(2) == "post-ad" or $this->uri->segment(2) == "create-ad") {
} else {
if (count($_POST) <= 0) {
$this->session->set_userdata('req_url', current_url());
}
redirect(site_url('account/trylogin'));
}
}
$this->per_page = get_per_page_value();
$this->load->database();
$this->active_theme = get_active_theme();
$this->load->model('user/post_model');
$this->form_validation->set_error_delimiters('<div class="alert alert-danger form-error">', '</div>');
}
示例13: lang_key
echo lang_key('available_themes');
?>
</h3>
<div class="box-tool">
<a href="#" data-action="collapse"><i class="fa fa-chevron-up"></i></a>
</div>
</div>
<div class="box-content">
<div class="row bs-examples">
<?php
$this->load->helper('directory');
$map = directory_map('./application/modules/themes/views', 1);
foreach ($map as $theme) {
if ($theme == get_active_theme()) {
continue;
}
$file = './application/modules/themes/views/' . $theme . '/assets/config.xml';
$xmlstr = file_get_contents($file);
$xml = simplexml_load_string($xmlstr);
$config = $xml->xpath('//config');
?>
<div class="col-xs-6 col-md-4" style="margin-bottom:30px;">
<a href="javascript:void(0);" class="thumbnail">
<img alt="" src="<?php
echo base_url('application/modules/themes/views/' . $theme . '/assets/screen.jpg');
?>
">
</a>
<h4><?php
示例14: get_active_theme
<?php
}
?>
<meta name="description" content="Sistema informático para la gestión de bibliotecas y biblioteca digital, basado en Openbiblio">
<link href="../css/style.css" rel="stylesheet" type="text/css" media="screen" />
<style type="text/css">
<?php
include "../css/style.php";
?>
</style>
<?php
if (!isset($_SESSION["active_theme"])) {
require_once "../shared/theme.php";
$_SESSION["active_theme"] = get_active_theme();
}
if (strcmp($_SESSION["active_theme"], "") != 0) {
echo '<link href="../themes/' . $_SESSION["active_theme"] . '/style.css" rel="stylesheet" type="text/css" media="screen" />';
}
?>
<title><?php
echo H(OBIB_LIBRARY_NAME);
?>
</title>
<script language="JavaScript">
<!--
function popSecondary(url) {
var SecondaryWin;
SecondaryWin = window.open(url,"secondary","resizable=yes,scrollbars=yes,width=535,height=400");
self.name="main";
示例15: lang_key
<div class="row">
<div class="col-md-12">
<div class="box">
<div class="box-title">
<h3><i class="fa fa-bars"></i> <?php
echo lang_key('active_theme');
?>
</h3>
<div class="box-tool">
<a href="#" data-action="collapse"><i class="fa fa-chevron-up"></i></a>
</div>
</div>
<div class="box-content">
<?php
$theme = get_active_theme();
$file = './application/modules/themes/views/' . $theme . '/assets/config.xml';
@($xmlstr = file_get_contents($file));
if ($xmlstr == '') {
echo 'Theme config file not found';
die;
}
$xml = simplexml_load_string($xmlstr);
@($config = $xml->xpath('//config'));
?>
<div class="row bs-examples">
<div class="col-xs-6 col-md-4">
<a href="javascript:void(0);" class="thumbnail">
<img alt="" src="<?php
echo base_url('application/modules/themes/views/' . $theme . '/assets/screen.png');
?>