Пример #1
0
 /**
  * Updates properties on this node.
  *
  * This method received a PropPatch object, which contains all the
  * information about the update.
  *
  * To update specific properties, call the 'handle' method on this object.
  * Read the PropPatch documentation for more information.
  *
  * @param PropPatch $propPatch
  * @return void
  */
 function propPatch(PropPatch $propPatch)
 {
     return $this->caldavBackend->updateCalendar($this->calendarInfo['id'], $propPatch);
 }
Пример #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);
 }