* @author Behrooz Shabani * @copyright 2012 (c) ParsPooyesh Co * @license GPLv3 * @version GIT: $Id$ * @link http://xamin.ir */ /** * Handlebars context * Context for a template * * @category Xamin * @package Handlebars * @author fzerorubigd * @author Behrooz Shabani * @copyright 2012 (c) ParsPooyesh Co * @license GPLv3 * @version Release: @package_version@ * @link http://xamin.ir */ class Handlebars_Context { /** * @var array stack for context only top stack is available */ protected $stack = array(); /** * Mustache rendering Context constructor. * * @param mixed $context Default rendering context (default: null) */ public function __construct($context = null) { if ($context !== null) { $this->stack = array($context); } } /** * Push a new Context frame onto the stack. * * @param mixed $value Object or array to use for context * * @return void */ public function push($value) { array_push($this->stack, $value); } /** * Pop the last Context frame from the stack. * * @return mixed Last Context frame (object or array) */ public function pop() { return array_pop($this->stack); } /** * Get the last Context frame. * * @return mixed Last Context frame (object or array) */ public function last() { return end($this->stack); } /** * Change the current context to one of current context members * * @param string $variableName name of variable or a callable on current context * * @return mixed actual value */ public function with($variableName) { $value = $this->get($variableName); $this->push($value); return $value; } /** * Get a avariable from current context * Supported types : * variable , ../variable , variable.variable , . * * @param string $variableName variavle name to get from current context * * @return mixed */ public function get($variableName) { //Need to clean up $variableName = trim($variableName); $level = 0; while (substr($variableName, 0, 3) == '../') { $variableName = trim(substr($variableName, 3)); $level++; } if (count($this->stack) < $level) { return ''; } end($this->stack); while ($level) { prev($this->stack); $level--; } $current = current($this->stack); if (!$variableName) { return ''; } elseif ($variableName == '.') { return $current; } else { $chunks = explode('.', $variableName); foreach ($chunks as $chunk) { if (is_string($current) and $current == '') { return $current; } $current = $this->_findVariableInContext($current, $chunk); } } return $current; } /** * Check if $variable->$inside is available * * @param mixed $variable variable to check * @param string $inside property/method to check * * @return boolean true if exist */ private function _findVariableInContext($variable, $inside) { $value = ''; if (is_array($variable)) { if (isset($variable[$inside])) { $value = $variable[$inside]; } } elseif (is_object($variable)) { if (isset($variable->$inside)) { $value = $variable->$inside; } elseif (is_callable(array($variable, $inside))) { $value = call_user_func(array($variable, $inside)); } } elseif ($inside === '.') { $value = $variable; } return $value; } }