Searched refs:aclLevel (Results 1 – 3 of 3) sorted by relevance
| /plugin/annotations/ |
| H A D | action.php | 310 $aclLevel = auth_quickaclcheck($id); 315 $this->actionLoad($helper, $id, $aclLevel); 318 $this->actionCreate($helper, $id, $payload, $user, $aclLevel); 321 $this->actionReply($helper, $id, $payload, $user, $aclLevel); 336 $this->actionResolve($helper, $id, $payload, $user, $aclLevel); 362 * @param int $aclLevel 364 protected function actionCreate($helper, $id, array $payload, $user, $aclLevel) argument 366 if (!$helper->canAnnotate($user, $aclLevel)) { 392 * @param int $aclLevel 394 protected function actionReply($helper, $id, array $payload, $user, $aclLevel) argument [all …]
|
| H A D | helper.php | 727 * @param int $aclLevel the user's ACL level on the page 730 public function canAnnotate($user, $aclLevel) argument 732 return $user !== '' && $user !== null && $aclLevel >= AUTH_READ;
|
| /plugin/wysiwyg/ |
| D | ajax.php | 77 $aclLevel = auth_aclcheck($ID,$user,$groups); 78 if ($aclLevel >= AUTH_EDIT) { 123 $aclLevel = auth_aclcheck($ID,$user,$groups); 124 if ($aclLevel < AUTH_EDIT) { 150 $aclLevel = auth_aclcheck($ID,$user,$groups); 151 if ($aclLevel < AUTH_EDIT) {
|