getTemplate() public method

Returns the application's template name
public getTemplate ( boolean | array $params = false ) : string
$params boolean | array An optional associative array of configuration settings
return string The template name. System is the fallback.
Example #1
0
 /**
  * Returns the application's template name
  *
  * @param   boolean|array  $params  An optional associative array of configuration settings
  *
  * @return  string  The template name. System is the fallback.
  */
 public function getTemplate($params = false)
 {
     if (is_null(self::$template)) {
         return parent::getTemplate($params);
     }
     return self::$template;
 }