output() public method

Parse the template file and print it to the screen
Deprecation: Deprecated since Contao 4.0, to be removed in Contao 5.0. Use Template::getResponse() instead.
public output ( )
Ejemplo n.º 1
0
 /**
  * Send the response to the client
  *
  * @param bool $blnCheckRequest If true, check for unsued $_GET parameters
  *
  * @deprecated Deprecated since Contao 4.0, to be removed in Contao 5.0.
  *             Use FrontendTemplate::getResponse() instead.
  */
 public function output($blnCheckRequest = false)
 {
     $this->compile($blnCheckRequest);
     parent::output();
 }
Ejemplo n.º 2
0
 /**
  * Send the response to the client
  *
  * @param bool $blnCheckRequest If true, check for unsued $_GET parameters
  *
  * @deprecated Deprecated since Contao 4.0, to be removed in Contao 5.0.
  *             Use FrontendTemplate::getResponse() instead.
  */
 public function output($blnCheckRequest = false)
 {
     $this->blnCheckRequest = $blnCheckRequest;
     parent::output();
 }