當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Zend_Session_Namespace::getNamespace方法代碼示例

本文整理匯總了PHP中Zend_Session_Namespace::getNamespace方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Session_Namespace::getNamespace方法的具體用法?PHP Zend_Session_Namespace::getNamespace怎麽用?PHP Zend_Session_Namespace::getNamespace使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend_Session_Namespace的用法示例。


在下文中一共展示了Zend_Session_Namespace::getNamespace方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: isAuthorized

 /**
  * Checks whether the user is authorized to use a specific module
  * @param \Zend_Session_Namespace $session The session namespace
  * @param string $url The URL to check against
  * @return boolean
  */
 public static function isAuthorized(\Zend_Session_Namespace $session, $url)
 {
     $authorized = false;
     $module = Functions::getModuleNameFromURL($url);
     switch ($session->getNamespace()) {
         case 'internal':
             $visitor_ip = $_SERVER['HTTP_X_FORWARDED_FOR'] ?: $_SERVER['REMOTE_ADDR'];
             $authorized = static::cidrCheck($visitor_ip, unserialize(ALLOWED_IPS)) && static::checkUserPrivileges($session->user_name, $module);
             break;
         case 'student':
             $authorized = $module === 'student';
             break;
         case 'faculty':
             $authorized = $module === 'faculty';
             break;
         case 'professor':
             $authorized = $module === 'professor';
             break;
         case 'cron':
             $authorized = true;
             break;
         default:
             throw new \InvalidArgumentException('Invalid user class.');
     }
     // @TODO Move to a callback function
     if (!$authorized) {
         header('Location: https://' . URL_CUSTOM_HANDLERS . '/403.php');
         exit;
     }
     return $authorized;
 }
開發者ID:hughnguy,項目名稱:php,代碼行數:37,代碼來源:Authentication.php

示例2: testGetNameSpaceMethod

 /**
  * test for method getNamespace()
  *
  * @group ZF-1982
  * @return void
  */
 public function testGetNameSpaceMethod()
 {
     Zend_Session::$_unitTestEnabled = true;
     $namespace = array('FooBar', 'Foo_Bar', 'Foo-Bar', 'Foo1000');
     foreach ($namespace as $v) {
         $s = new Zend_Session_Namespace($v);
         $this->assertEquals($v, $s->getNamespace());
     }
 }
開發者ID:jsnshrmn,項目名稱:Suma,代碼行數:15,代碼來源:SessionTest.php

示例3: getProgressBar

 /**
  * The Zend ProgressBar handles the communication through
  * an adapter interface.
  *
  * @return \Zend_ProgressBar
  */
 public function getProgressBar()
 {
     if (!$this->progressBar instanceof \Zend_ProgressBar) {
         $this->setProgressBar(new \Zend_ProgressBar($this->getProgressBarAdapter(), 0, 100, $this->_session->getNamespace() . '_pb'));
     }
     return $this->progressBar;
 }
開發者ID:GemsTracker,項目名稱:MUtil,代碼行數:13,代碼來源:BatchAbstract.php

示例4: getUserId

 /**
  * Gets the user ID
  * @param \Zend_Session_Namespace $session The session object
  * @return int|null
  */
 private function getUserId(\Zend_Session_Namespace $session = null)
 {
     if ($session === null) {
         return null;
     }
     switch ($session->getNamespace()) {
         case 'internal':
         case 'student':
         case 'faculty':
             return (int) $session->user_id;
         case 'cron':
             return CRON_USER_ID;
         case 'professor':
         default:
             return null;
     }
 }
開發者ID:hughnguy,項目名稱:php,代碼行數:22,代碼來源:Event.php


注:本文中的Zend_Session_Namespace::getNamespace方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。