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


PHP CommonDBRelation::can方法代碼示例

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


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

示例1: can

 /**
  * Check right on an contract - overloaded to check max_links_allowed
  *
  * @param $ID ID of the item (-1 if new item)
  * @param $right Right to check : r / w / recursive
  * @param $input array of input data (used for adding item)
  *
  * @return boolean
  **/
 function can($ID, $right, &$input = NULL)
 {
     if ($ID < 0) {
         // Ajout
         $contract = new Contract();
         if (!$contract->getFromDB($input['contracts_id'])) {
             return false;
         }
         if ($contract->fields['max_links_allowed'] > 0 && countElementsInTable($this->getTable(), "`contracts_id`='" . $input['contracts_id'] . "'") >= $contract->fields['max_links_allowed']) {
             return false;
         }
     }
     return parent::can($ID, $right, $input);
 }
開發者ID:ryukansent,項目名稱:Thesis-SideB,代碼行數:23,代碼來源:contract_item.class.php

示例2: can

 /**
  * Check right on an item - overloaded to check is_global
  *
  * @param $ID     ID of the item (-1 if new item)
  * @param $right  Right to check : r / w / recursive
  * @param $input  array of input data (used for adding item) (default NULL)
  *
  * @return boolean
  **/
 function can($ID, $right, array &$input = NULL)
 {
     if ($ID < 0) {
         // Ajout
         if (!($item = new $input['itemtype']())) {
             return false;
         }
         if (!$item->getFromDB($input['items_id'])) {
             return false;
         }
         if ($item->getField('is_global') == 0 && self::countForItem($ID) > 0) {
             return false;
         }
     }
     return parent::can($ID, $right, $input);
 }
開發者ID:picaro04,項目名稱:simcard,代碼行數:25,代碼來源:simcard_item.class.php

示例3: can

 /**
  * Check right on an item - overloaded to check is_global
  *
  * @param $ID ID of the item (-1 if new item)
  * @param $right Right to check : r / w / recursive
  * @param $input array of input data (used for adding item)
  *
  * @return boolean
  **/
 function can($ID, $right, &$input = NULL)
 {
     if ($ID < 0) {
         // Ajout
         if (!class_exists($input['itemtype'])) {
             return false;
         }
         $item = new $input['itemtype']();
         if (!$item->getFromDB($input['items_id'])) {
             return false;
         }
         if ($item->getField('is_global') == 0 && $this->countForItem($item) > 0) {
             return false;
         }
     }
     return parent::can($ID, $right, $input);
 }
開發者ID:ryukansent,項目名稱:Thesis-SideB,代碼行數:26,代碼來源:computer_item.class.php

示例4: can

 /**
  * Check right on an item - overloaded to check user access to its datas
  *
  * @param $ID ID of the item (-1 if new item)
  * @param $right Right to check : r / w / recursive
  * @param $input array of input data (used for adding item)
  *
  * @return boolean
  **/
 function can($ID, $right, &$input = NULL)
 {
     if ($ID > 0) {
         if ($this->fields['users_id'] === getLoginUserID()) {
             return true;
         }
     }
     return parent::can($ID, $right, $input);
 }
開發者ID:ryukansent,項目名稱:Thesis-SideB,代碼行數:18,代碼來源:ticket_user.class.php


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