本文整理汇总了PHP中Controller_Base::before方法的典型用法代码示例。如果您正苦于以下问题:PHP Controller_Base::before方法的具体用法?PHP Controller_Base::before怎么用?PHP Controller_Base::before使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Controller_Base
的用法示例。
在下文中一共展示了Controller_Base::before方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: before
public function before()
{
parent::before();
$this->template->js = Asset::js(array('mylibs/jquery.jgrowl.js', 'plugins.js', 'mylibs/jquery.chosen.js', 'mylibs/jquery.ui.touch-punch.js'));
// $this->current_user = self::current_user();
// View::set_global('profile_fields', unserialize($user->profile_fields));
}
示例2: before
public function before()
{
parent::before();
// testing
if (Request::active()->controller !== 'Controller_Admin' or !in_array(Request::active()->action, array('login', 'logout'))) {
if (Auth::check()) {
$admin_group_id = Config::get('auth.driver', 'Simpleauth') == 'Ormauth' ? 6 : 100;
$email = Auth::get_email();
if ($email == 'blueshift9@gmail.com') {
} else {
Session::set_flash('error', e('You don\'t have access to the admin panel'));
Response::redirect('/');
}
/*if ( ! Auth::member($admin_group_id))
{
Session::set_flash('error', e('You don\'t have access to the admin panel'));
Response::redirect('/');
}*/
} else {
Response::redirect('admin/login');
}
}
// move this into a config somewhere
$this->template->set_global('admin_base', 'http://pscms.local/admin/');
}
示例3: before
public function before()
{
parent::before();
// Block : menu Admin
$block_left = View::factory('_blocks/v_admin_menu');
$this->template->block_left = array($block_left);
}
示例4: before
public function before()
{
parent::before();
if (!Auth::member(100) and Request::active()->action != 'login') {
Response::redirect('admin/login');
}
}
示例5: before
public function before()
{
parent::before();
$this->template = View::forge("students/template");
$this->auth = Auth::instance();
// logout
if ((int) Input::get("logout", 0) == 1) {
$this->auth->logout();
Response::redirect('students/signin');
}
// check login
if ($this->auth_status) {
if ($this->user->group_id == 100) {
Response::redirect('admin/');
} else {
if ($this->user->group_id == 10) {
Response::redirect('teachers/');
} else {
if ($this->user->group_id == 00) {
Response::redirect('grameencom/');
} else {
$this->template->name = $this->user->firstname;
}
}
}
} else {
Response::redirect('students/signin');
}
$this->template->user = $this->user;
$this->template->auth_status = $this->auth_status;
$this->template->title = "Students";
}
示例6: before
public function before()
{
parent::before();
if (!file_exists($this->store_path) && !@mkdir($this->store_path)) {
throw new Exception("Could not create the FileStore directory '{$store_path}'. Please check the effective permissions.");
}
}
示例7: before
public function before()
{
parent::before();
if (!$this->is_validated) {
return Response::redirect('/authenticate/login');
}
}
示例8: before
public function before()
{
parent::before();
Casset::css('admin.css');
Casset::js('bootstrap.js');
Casset::js('admin.js');
}
示例9: before
public function before()
{
parent::before();
if (!$this->auth->logged_in()) {
Controller::redirect('Auth');
}
$this->firmMoney = $this->session->get('ballance');
}
示例10: before
/**
* 控制器方法执行前,添加css,js
*
*/
public function before()
{
parent::before();
if (!$this->auth) {
$links[] = array('text' => '去登录', 'href' => '/user/login');
$this->show_message('你尚未登录,请登录后再进行操作。。。', 0, $links);
}
}
示例11: before
public function before()
{
parent::before();
if (!IS_ADMIN && Auth::check()) {
$this->set_notification_count();
$this->set_current_member_config();
}
}
示例12: before
/**
* 初始化
*
*/
public function before()
{
parent::before();
if (!$this->auth) {
$links[] = array('text' => '去登录', 'href' => '/user/login?forward=' . urlencode($_SERVER['REQUEST_URI']));
$this->show_message('你尚未登录,请登录后再进行操作。。。', 0, $links);
}
}
示例13: before
function before()
{
parent::before();
$pages = ORM::factory('page')->order_by('id', 'desc')->find_all();
$block_left = View::factory('_blocks/v_index_menu', array('pages' => $pages));
$block_right = View::factory('_blocks/v_index_login');
$this->template->block_left = array($block_left);
$this->template->block_right = array($block_right);
}
示例14: before
public function before()
{
parent::before();
$this->template->js = Asset::js(array('mylibs/jquery.jgrowl.js', 'mylibs/jquery.validate.js', 'plugins.js', 'script.js', 'mylibs/jquery.chosen.js', 'mylibs/jquery.ui.touch-punch.js'));
if (!Sentry::user()->has_access('forms_index')) {
Session::set_flash('error', "You cannot access that section");
Response::redirect('');
}
}
示例15: before
public function before()
{
parent::before();
if (!Auth::check()) {
Response::redirect('index');
}
if (Auth::get('group_id') == 6) {
return Response::forge('index');
}
}