⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.4
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-horde
/
mnemo
/
lib
/
Notepads
/
View File Name :
Kolab.php
* @license http://www.horde.org/licenses/apache * @link http://www.horde.org/apps/mnemo */ /** * The Kolab specific notepads handler. * * Copyright 2011-2017 Horde LLC (http://www.horde.org/) * * See the enclosed file LICENSE for license information (ASL). If you * did not receive this file, see http://www.horde.org/licenses/apache. * * @category Horde * @package Mnemo * @author Gunnar Wrobel
* @license http://www.horde.org/licenses/apache * @link http://www.horde.org/apps/mnemo */ class Mnemo_Notepads_Kolab extends Mnemo_Notepads_Base { /** * Runs any actions after setting a new default notepad. * * @param string $share The default share ID. */ public function setDefaultShare($share) { $notepads = $this->_shares ->listShares( $this->_user, array('perm' => Horde_Perms::SHOW, 'attributes' => $this->_user)); foreach ($notepads as $id => $notepad) { if ($id == $share) { $notepad->set('default', true); $notepad->save(); break; } } } /** * Return the name of the default share. * * @return string The name of a default share. */ protected function _getDefaultShareName() { return _("Notes"); } /** * Add any modifiers required to the share in order to mark it as default. * * @param Horde_Share_Object $share The new default share. */ protected function _prepareDefaultShare($share) { $share->set('default', true); } }