🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-10 07:02:59 | PHP 8.2.33
📂
/ (Root)
/
home
/
eliteewa
/
public_html
/
wp-content
/
plugins
/
smart-slider-3
/
Nextend
/
Framework
/
Model
📍 /home/eliteewa/public_html/wp-content/plugins/smart-slider-3/Nextend/Framework/Model
🔄 Refresh
✏️
Editing: StorageSectionManager.php
Writable
<?php namespace Nextend\Framework\Model; class StorageSectionManager { /** @var ApplicationSection[] */ private static $storageTypes = array(); /** * @param $type * * @return ApplicationSection */ public static function getStorage($type) { if (!isset(self::$storageTypes[$type])) { self::$storageTypes[$type] = new ApplicationSection($type); } return self::$storageTypes[$type]; } }
💾 Save Changes
❌ Cancel