芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/cloud.pulsehost.co.uk/vendor/afterlogic/dav/lib/DAV/FS/Root.php
GetSubModules(); } return self::$aStoragesCache; } public function getChildrenCount() { return count($this->getStorages()); } public function getChildren() { $aChildren = []; $aStorages = $this->getStorages(); foreach ($aStorages as $sStorage) { $aClassPath = ['Afterlogic', 'DAV', 'FS']; $aStoragePath = \explode('.', $sStorage); foreach ($aStoragePath as $sPathItem) { $aClassPath[] = \ucfirst($sPathItem); } $aClassPath[] = 'Root'; $sClass = \implode( '\\', $aClassPath ); $aChildren[] = new $sClass(); } return $aChildren; } }