本文整理汇总了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);
}
示例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);
}
示例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);
}
示例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);
}