| Current Path : /var/www/iplanru/data/www/i-plan.ru/administrator/components/com_zoo/framework/helpers/ |
| Current File : /var/www/iplanru/data/www/i-plan.ru/administrator/components/com_zoo/framework/helpers/session.php |
<?php
/**
* @package com_zoo
* @author YOOtheme http://www.yootheme.com
* @copyright Copyright (C) YOOtheme GmbH
* @license http://www.gnu.org/licenses/gpl.html GNU/GPL
*/
/**
* Helper for the session. Wrapper for JSession
*
* @package Framework.Helpers
*
* @see JSession
*/
class SessionHelper extends AppHelper {
/**
* Map all the methods to the JSession class
*
* @param string $method The name of the method
* @param array $args The list of arguments to pass on to the method
*
* @return mixed The result of the call
*
* @see JSession
*
* @since 1.0.0
*/
public function __call($method, $args) {
return $this->_call(array($this->app->system->session, $method), $args);
}
}