Example #1
0
 /**
  * @param Event $event
  * @return boolean
  */
 public function hasManagementPrivilegesOn(Event $event)
 {
     if ($this->isAdmin()) {
         return true;
     }
     return $event->isEvaluator($this);
 }