Add missing methods required by the calendar_driver interface

This commit is contained in:
Thomas Bruederli 2011-06-08 18:48:06 -06:00
parent 830db74112
commit 3a2b44e106

View file

@ -120,6 +120,27 @@ class kolab_driver extends calendar_driver
return false;
}
/**
* Update properties of an existing calendar
*
* @see calendar_driver::edit_calendar()
*/
public function edit_calendar($prop)
{
return false;
}
/**
* Delete the given calendar with all its contents
*
* @see calendar_driver::remove_calendar()
*/
public function remove_calendar($prop)
{
return false;
}
/**
* Add a single event to the database
*