lithium\template\view\adapter\Simple::template()
Returns a template string
Parameters
-
string
$type
-
array
$options
Returns
stringSource
public function template($type, $options) {
if (isset($options[$type])) {
return $options[$type];
}
return isset($options['template']) ? $options['template'] : '';
}