本文整理匯總了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);
}