Файловый менеджер - Редактировать - /var/www/iplanru/data/www/i-plan.ru/templates/yoo_everest/warp/src/Warp/Asset/AssetOptions.php
Назад
<?php /** * @package Warp Theme Framework * @author YOOtheme http://www.yootheme.com * @copyright Copyright (C) YOOtheme GmbH * @license http://www.gnu.org/licenses/gpl.html GNU/GPL */ namespace Warp\Asset; /** * Asset options class, provides options implementation. */ abstract class AssetOptions implements \ArrayAccess { /** * @var array */ protected $options; /** * Constructor. * * @param array $options */ public function __construct($options = array()) { $this->options = $options; } /** * Get options. * * @return array */ public function getOptions() { return $this->options; } /* ArrayAccess interface implementation */ public function offsetSet($name, $value) { $this->options[$name] = $value; } public function offsetGet($name) { return isset($this->options[$name]) ? $this->options[$name] : null; } public function offsetExists($name) { return isset($this->options[$name]); } public function offsetUnset($name) { unset($this->options[$name]); } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45-1~dotdeb+6.1 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка