⚝
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
/
Dav
/
View File Name :
RootCollection.php
* @category Horde * @license http://www.horde.org/licenses/bsd BSD * @package Dav */ use Sabre\DAV; /** * A collection (directory) object for the root folder. * * @author Jan Schneider
* @category Horde * @license http://www.horde.org/licenses/bsd BSD * @package Dav */ class Horde_Dav_RootCollection extends DAV\Collection { /** * A registry object. * * @var Horde_Registry */ protected $_registry; /** * Additional collections. * * @var array */ protected $_collections = array(); /** * The path to a MIME magic database. * * @var string */ protected $_mimedb; /** * Constructor. * * @param Horde_Registry $registry A registry object. * @param array $collections Additional collections to add to the * root node. * @param string $mimedb Location of a MIME magic database. */ public function __construct(Horde_Registry $registry, array $collections, $mimedb) { $this->_registry = $registry; $this->_collections = $collections; $this->_mimedb = $mimedb; } /** * Returns the name of the node. * * This is used to generate the url. * * @return string */ public function getName() { return 'root'; } /** * Returns an array with all the child nodes * * @return DAV\INode[] */ public function getChildren() { $apps = $this->_collections; foreach ($this->_registry->listApps() as $app) { if ($this->_registry->hasMethod('browse', $app)) { $apps[] = new Horde_Dav_Collection( $app, array(), $this->_registry, $this->_mimedb ); } } return $apps; } }