コード例 #1
0
 /**
  * Constructs a new HtmlPage object.
  *
  * @param string $content
  *   (optional) The body content of the page.
  * @param array $cache_info
  *   The cache information.
  * @param string $title
  *   (optional) The title of the page.
  */
 public function __construct($content = '', array $cache_info = array(), $title = '')
 {
     parent::__construct($content, $cache_info);
     $this->title = $title;
     $this->htmlAttributes = new Attribute();
     $this->bodyAttributes = new Attribute();
 }