Template::removeControllerPath() 

\nn\t3::Template()->removeControllerPath($view); 

Removes the path of the controller name, e.g. /Main/... from the search for templates.

\nn\t3::Template()->removeControllerPath( $this->view );
Copied!

| @return void

Source Code 

public function removeControllerPath( &$view ) {
	$view->getRenderingContext()->setControllerName('');
}
Copied!