当前位置: 首页>>代码示例>>PHP>>正文


PHP Pages::init方法代码示例

本文整理汇总了PHP中Pages::init方法的典型用法代码示例。如果您正苦于以下问题:PHP Pages::init方法的具体用法?PHP Pages::init怎么用?PHP Pages::init使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Pages的用法示例。


在下文中一共展示了Pages::init方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 /**
  * Constructor.
  *
  * @access protected
  */
 protected function __construct()
 {
     // Init Config
     Config::init();
     // Turn on output buffering
     ob_start();
     // Display Errors
     Config::get('system.errors.display') and error_reporting(-1);
     // Set internal encoding
     function_exists('mb_language') and mb_language('uni');
     function_exists('mb_regex_encoding') and mb_regex_encoding(Config::get('system.charset'));
     function_exists('mb_internal_encoding') and mb_internal_encoding(Config::get('system.charset'));
     // Set default timezone
     date_default_timezone_set(Config::get('system.timezone'));
     // Start the session
     Session::start();
     // Init Cache
     Cache::init();
     // Init Plugins
     Plugins::init();
     // Init Blocks
     Blocks::init();
     // Init Pages
     Pages::init();
     // Flush (send) the output buffer and turn off output buffering
     ob_end_flush();
 }
开发者ID:zorca,项目名称:morfy,代码行数:32,代码来源:Morfy.php

示例2: _filter_pages_authorization

                }
            }
        }
    }
    // ------------------------------------------------------------------------
    private static function _filter_pages_authorization($row)
    {
        // If the page group != 0, then get the page group and check the restriction
        if ($row['id_group'] != 0) {
            self::$ci->load->model('connect_model');
            $page_group = FALSE;
            $groups = self::$ci->connect_model->get_groups();
            // Get the page group
            foreach ($groups as $group) {
                if ($group['id_group'] == $row['id_group']) {
                    $page_group = $group;
                }
            }
            // If the current connected user has access to the page return TRUE
            if (self::$user !== FALSE && $page_group != FALSE && self::$user['group']['level'] >= $page_group['level']) {
                return TRUE;
            }
            // If nothing found, return FALSE
            return FALSE;
        }
        return TRUE;
    }
}
Pages::init();
/* End of file Pages.php */
/* Location: /application/libraries/Pages.php */
开发者ID:BGCX261,项目名称:zillatek-project-svn-to-git,代码行数:31,代码来源:Pages.php


注:本文中的Pages::init方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。