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


PHP Authenticate::session方法代码示例

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


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

示例1: pre

 public function pre()
 {
     $this->user = Authenticate::session();
     if (!is_a($this->user, 'Kadmin')) {
         throw new Exception('Not Authorized', 401);
     }
 }
开发者ID:monkeytie,项目名称:korona,代码行数:7,代码来源:list.ctrl.php

示例2: pre

 public function pre()
 {
     $this->user = Authenticate::session();
     if (!is_a($this->user, 'Kadmin') || $this->user->getType() != 'admin') {
         throw new Exception('Not Authorized', 401);
     }
     $this->targetLanguage = 'en';
     C::s('LANG_DIR', realpath(ROOTDIR . '../locale/'));
     $this->path = C::g('LANG_DIR') . '/' . C::g('LANG_AVAILABLE', $this->targetLanguage) . '/LC_MESSAGES/';
 }
开发者ID:monkeytie,项目名称:korona,代码行数:10,代码来源:translate.ctrl.php

示例3: pre

 public function pre()
 {
     $this->user = Authenticate::session();
     if (!is_a($this->user, 'Kadmin') || $this->user->getType() != 'admin') {
         throw new Exception('Not Authorized', 401);
     }
     if (is_string($this->param2) && !empty($this->param2)) {
         $this->block = Block::getById($this->param2);
     }
 }
开发者ID:monkeytie,项目名称:korona,代码行数:10,代码来源:block.ctrl.php

示例4: pre

 public function pre()
 {
     $this->user = Authenticate::session();
     if (!is_a($this->user, 'Kadmin')) {
         throw new Exception('Not Authorized', 401);
     }
     if (MongoId::isValid($this->param2)) {
         $this->page = KLib\instance::of('Page', $this->param2);
     }
 }
开发者ID:monkeytie,项目名称:korona,代码行数:10,代码来源:page.ctrl.php

示例5: session_name

<?php

session_name('KNSESSID');
session_start();
require_once __DIR__ . '/../global.inc.php';
$user = Authenticate::session();
if (!is_a($user, 'Kadmin')) {
    header('HTTP/1.1 401 Authorization Required');
    exit(0);
}
$config = (include 'config/config.php');
//TODO switch to array
extract($config, EXTR_OVERWRITE);
include 'include/utils.php';
if ($_SESSION['RF']["verify"] != "RESPONSIVEfilemanager") {
    response('forbiden', 403)->send();
    exit;
}
include 'include/mime_type_lib.php';
if (strpos($_POST['path'], '/') === 0 || strpos($_POST['path'], '../') !== false || strpos($_POST['path'], './') === 0) {
    response('wrong path', 400)->send();
    exit;
}
if (strpos($_POST['name'], '/') !== false) {
    response('wrong path', 400)->send();
    exit;
}
$path = $current_path . $_POST['path'];
$name = $_POST['name'];
$info = pathinfo($name);
if (!in_array(fix_strtolower($info['extension']), $ext)) {
开发者ID:monkeytie,项目名称:korona,代码行数:31,代码来源:force_download.php


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