Add missing methods required by the calendar_driver interface
This commit is contained in:
parent
830db74112
commit
3a2b44e106
1 changed files with 21 additions and 0 deletions
|
@ -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
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue