public function mayOperate($sOperation, $oUser = false) { $oUser = DocumentCategoryPeer::getRightsUser($oUser); $bIsAllowed = false; if ($oUser && ($this->isNew() || $this->getCreatedBy() === $oUser->getId()) && DocumentCategoryPeer::mayOperateOnOwn($oUser, $this, $sOperation)) { $bIsAllowed = true; } else { if (DocumentCategoryPeer::mayOperateOn($oUser, $this, $sOperation)) { $bIsAllowed = true; } } FilterModule::getFilters()->handleDocumentCategoryOperationCheck($sOperation, $this, $oUser, array(&$bIsAllowed)); return $bIsAllowed; }