本文整理汇总了PHP中JControllerForm::_allowEdit方法的典型用法代码示例。如果您正苦于以下问题:PHP JControllerForm::_allowEdit方法的具体用法?PHP JControllerForm::_allowEdit怎么用?PHP JControllerForm::_allowEdit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JControllerForm
的用法示例。
在下文中一共展示了JControllerForm::_allowEdit方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _allowEdit
/**
* Method to check if you can edit a record.
*
* @param array An array of input data.
* @param string The name of the key for the primary key.
*
* @return boolean
*/
protected function _allowEdit($data = array(), $key = 'id')
{
// Initialise variables.
$categoryId = (int) isset($data['catid']) ? $data['catid'] : 0;
$user = JFactory::getUser();
if ($categoryId) {
// The category has been set. Check the category permissions.
return $user->authorise('core.edit', 'com_newsfeeds.category.' . $categoryId);
} else {
// Since there is no asset tracking, revert to the component permissions.
return parent::_allowEdit($data, $key);
}
}