lithium\template\View::$_processes

protected property

View processes are aggregated lists of steps taken to to create a complete, rendered view. For example, the default process, 'all', renders a template, then renders a layout, using the rendered template content. A process can be defined using one or more steps defined in the $_steps property. Each process definition is a simple array of ordered values, where each value is a key in the $_steps array.

Source

	protected $_processes = [
		'all' => ['template', 'layout'],
		'template' => ['template'],
		'element' => ['element']
	];