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


PHP AuthManager::checkAdminAccess方法代碼示例

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


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

示例1: saveGallery

 /**
  * Сохранение картинок галлерей в БД
  */
 public function saveGallery($gallery, $name, array $images)
 {
     AuthManager::checkAdminAccess();
     $cnt = $this->getCnt('select count(1) as cnt from ps_gallery where v_dir=?', $gallery);
     if ($cnt == 0) {
         $this->insert('insert into ps_gallery (v_dir, v_name) VALUES (?, ?)', array($gallery, $name));
     } else {
         $this->update('update ps_gallery set v_name=? where v_dir=?', array($name, $gallery));
     }
     $this->update('delete from ps_gallery_images where v_dir=?', $gallery);
     $order = 0;
     foreach ($images as $img) {
         $this->saveImg($gallery, $img, ++$order);
     }
 }
開發者ID:ilivanoff,項目名稱:www,代碼行數:18,代碼來源:GalleryBean.php

示例2: inst

 /** @return AdminFoldedManager  */
 public static function inst()
 {
     AuthManager::checkAdminAccess();
     return parent::inst();
 }
開發者ID:ilivanoff,項目名稱:ps-sdk-dev,代碼行數:6,代碼來源:AdminFoldedManager.php

示例3: getNotConfirmemMsgsCnt

 public function getNotConfirmemMsgsCnt($threadId = null)
 {
     AuthManager::checkAdminAccess();
     $threadId = is_numeric($threadId) ? $this->validateThreadId($threadId) : null;
     return $this->BEAN->getNotConfirmemMsgsCntDb($threadId);
 }
開發者ID:ilivanoff,項目名稱:www,代碼行數:6,代碼來源:DiscussionController.php

示例4: __construct

 protected function __construct()
 {
     //Разрешаем работать с классом только администратору
     AuthManager::checkAdminAccess();
     //Мы должны находиться не в продакшене
     PsDefines::assertProductionOff(__CLASS__);
     $this->LOGGER = PsLogger::inst(__CLASS__);
     $this->BEAN = TESTBean::inst();
 }
開發者ID:ilivanoff,項目名稱:ps-sdk-dev,代碼行數:9,代碼來源:TestManager.php

示例5: deleteLocalImg

 public function deleteLocalImg($file)
 {
     AuthManager::checkAdminAccess();
     GalleryBean::inst()->deleteLocalImg($this->gallery, $file);
     $this->DM->getDirItem(null, $file)->remove();
 }
開發者ID:ilivanoff,項目名稱:www,代碼行數:6,代碼來源:PsGallery.php

示例6: assertAdminCanDo

 private function assertAdminCanDo($__FUNCTION__, $ident)
 {
     $this->LOGGER->info('{} вызвана для {}', $__FUNCTION__, $ident);
     AuthManager::checkAdminAccess();
 }
開發者ID:ilivanoff,項目名稱:www,代碼行數:5,代碼來源:FoldedResources.php

示例7: getAll

 public static final function getAll()
 {
     if (!is_array(self::$insts)) {
         //Только админ может загружать все аудиты
         AuthManager::checkAdminAccess();
         //Инициализируем коллекцию
         self::$insts = array();
         foreach (Classes::getDirClassNames(__DIR__, 'impl', __CLASS__) as $className) {
             $inst = $className::inst();
             self::$insts[$inst->getProcessCode()] = $inst;
         }
         ksort(self::$insts);
     }
     return self::$insts;
 }
開發者ID:ilivanoff,項目名稱:www,代碼行數:15,代碼來源:BaseAudit.php


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