lithium\template\view\adapter\Simple::render()

public method

Renders content from a template file provided by template().

Parameters

  • string $template
  • array $data
  • array $options

Returns

string

Source

	public function render($template, $data = [], array $options = []) {
		$defaults = ['context' => []];
		$options += $defaults;

		$context = [];
		$this->_context = $options['context'] + $this->_context;

		foreach (array_keys($this->_context) as $key) {
			$context[$key] = $this->__get($key);
		}
		$data = array_merge($this->_toString($context), $this->_toString($data));
		return Text::insert($template, $data, $options);
	}