/**
  * {@inheritDoc}
  */
 public function getPageTemplateDisplayName($format = 'html')
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPageTemplateDisplayName', array($format));
     return parent::getPageTemplateDisplayName($format);
 }
Example #2
0
 /** Returns the display name for this page template (localized and escaped accordingly to $format)
  * @param string $format = 'html'
  *   Escape the result in html format (if $format is 'html').
  *   If $format is 'text' or any other value, the display name won't be escaped.
  * @return string
  */
 public function getPageTemplateDisplayName($format = "html")
 {
     return parent::getPageTemplateDisplayName($format);
 }