lithium\template\Helper::_init()

protected method

Imports local string definitions into rendering context.

Returns

void

Source

	protected function _init() {
		parent::_init();

		if (!$this->_context) {
			return;
		}
		$this->_context->strings($this->_strings);

		if ($this->_config['handlers']) {
			$this->_context->handlers($this->_config['handlers']);
		}
	}