Exemplo n.º 1
0
 /**
  * Updates properties such as the display name and description 
  * 
  * @param array $mutations 
  * @return array 
  */
 public function updateProperties($mutations)
 {
     if (!$this->hasPrivilege()) {
         throw new Sabre_DAV_Exception_Forbidden('Permission denied to access this calendar');
     }
     return $this->caldavBackend->updateCalendar($this->calendarInfo['id'], $mutations);
 }
Exemplo n.º 2
0
 /**
  * Updates properties such as the display name and description
  *
  * @param array $mutations
  * @return array
  */
 public function updateProperties($mutations)
 {
     return $this->caldavBackend->updateCalendar($this->calendarInfo['id'], $mutations);
 }