ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF x x ?? C ?? C ?à " ?? ?? μ } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú?? ?? μ w !1AQ aq"2?B‘?±á #3Rebr?{
File "StorageSectionManager.php"
Full Path: /home/zcziejy/ryadselyen/plugins/smart-slider-3/Nextend/Framework/Model/StorageSectionManager.php
File size: 466 bytes
MIME-type: text/x-php
Charset: utf-8
<?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];
}
}