Your IP : 216.73.216.170


Current Path : /var/www/iplanru/data/www/i-plan.ru/templates/yoo_everest/warp/src/Warp/Helper/
Upload File :
Current File : /var/www/iplanru/data/www/i-plan.ru/templates/yoo_everest/warp/src/Warp/Helper/AbstractHelper.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\Helper;

use Warp\Warp;

/**
 * Helper base class.
 */
abstract class AbstractHelper implements \ArrayAccess
{
    /**
     * @var Warp
     */
    protected $warp;

    /**
     * Constructor.
     *
     * @param Warp $warp
     */
    public function __construct(Warp $warp)
    {
        $this->warp = $warp;
    }

    /* ArrayAccess interface implementation */

    public function offsetGet($name)
    {
        return $this->warp[$name];
    }

    public function offsetSet($name, $helper)
    {
        $this->warp[$name] = $helper;
    }

    public function offsetUnset($name)
    {
        unset($this->warp[$name]);
    }

    public function offsetExists($name)
    {
        return !empty($this->warp[$name]);
    }
}


Warning: Unknown: open(/var/www/iplanru/data/bin-tmp/sess_2f5d143aec25a575ffcd15a79c2acb32, O_RDWR) failed: No space left on device (28) in Unknown on line 0

Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/var/www/iplanru/data/bin-tmp) in Unknown on line 0