1: <?php
2: /**
3: * The Kolab specific calendars handler.
4: *
5: * See the enclosed file COPYING for license information (GPL). If you
6: * did not receive this file, see http://www.horde.org/licenses/gpl.
7: *
8: * @author Gunnar Wrobel <wrobel@pardus.de>
9: * @package Kronolith
10: */
11: class Kronolith_Calendars_Kolab
12: extends Kronolith_Calendars_Base
13: {
14: /**
15: * Return the name of the default share.
16: *
17: * @return string The name of a default share.
18: */
19: protected function getDefaultShareName()
20: {
21: return _("Calendar");
22: }
23: }