⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.78
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-pear
/
pear
/
php
/
Horde
/
Kolab
/
Storage
/
View File Name :
Uncached.php
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 */ /** * The basic handler for accessing data from Kolab storage. * * Copyright 2004-2017 Horde LLC (http://www.horde.org/) * * See the enclosed file COPYING for license information (LGPL). If you * did not receive this file, see http://www.horde.org/licenses/lgpl21. * * @category Kolab * @package Kolab_Storage * @author Gunnar Wrobel
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 */ class Horde_Kolab_Storage_Uncached extends Horde_Kolab_Storage_Base { /** * Create the folder list object. * * @param Horde_Kolab_Storage_Driver $master The primary connection driver. * @param Horde_Kolab_Storage_Factory $factory The factory. * * @return Horde_Kolab_Storage_List The handler for the list of folders * present in the Kolab backend. */ protected function _createList(Horde_Kolab_Storage_Driver $master, Horde_Kolab_Storage_Factory $factory) { return new Horde_Kolab_Storage_List_Base($master, $factory); } /** * Return a data handler for accessing data in the specified * folder. * * @param mixed $folder The name of the folder or * an instance representing * the folder. * @param Horde_Kolab_Storage_Driver $master The primary connection * driver. * @param Horde_Kolab_Storage_Factory $factory The factory. * @param string $object_type The type of data we want * to access in the folder. * @param int $data_version Format version of the * object data. * * @return Horde_Kolab_Data The data object. */ protected function _createData($folder, Horde_Kolab_Storage_Driver $master, Horde_Kolab_Storage_Factory $factory, $object_type = null, $data_version = 1) { $data = new Horde_Kolab_Storage_Data_Base( $folder, $master, $factory, $object_type, $data_version ); if (!empty($this->_logger)) { return new Horde_Kolab_Storage_Data_Decorator_Log( $data, $this->_logger); } return $data; } }