当前位置: 首页>>代码示例>>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;未经允许,请勿转载。