1: <?php
2: /**
3: * The Kolab specific notepads handler.
4: *
5: * PHP version 5
6: *
7: * @category Horde
8: * @package Mnemo
9: * @author Gunnar Wrobel <wrobel@pardus.de>
10: * @license http://www.horde.org/licenses/apache
11: * @link http://www.horde.org/apps/mnemo
12: */
13:
14: /**
15: * The Kolab specific notepads handler.
16: *
17: * Copyright 2011-2012 Horde LLC (http://www.horde.org/)
18: *
19: * See the enclosed file LICENSE for license information (ASL). If you
20: * did not receive this file, see http://www.horde.org/licenses/apache.
21: *
22: * @category Horde
23: * @package Mnemo
24: * @author Gunnar Wrobel <wrobel@pardus.de>
25: * @license http://www.horde.org/licenses/apache
26: * @link http://www.horde.org/apps/mnemo
27: */
28: class Mnemo_Notepads_Kolab
29: extends Mnemo_Notepads_Base
30: {
31: /**
32: * Return the name of the default share.
33: *
34: * @return string The name of a default share.
35: */
36: protected function getDefaultShareName()
37: {
38: return _("Notes");
39: }
40: }