本文整理匯總了PHP中Head::addChildList方法的典型用法代碼示例。如果您正苦於以下問題:PHP Head::addChildList方法的具體用法?PHP Head::addChildList怎麽用?PHP Head::addChildList使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Head
的用法示例。
在下文中一共展示了Head::addChildList方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getHtml
public function getHtml()
{
$html = new Html();
$head = new Head();
$head->addChild("\n <meta http-equiv='Content-Type' content='text/html; charset=UTF-8'>\n <meta http-equiv='cache-control' content='max-age=0' />\n <meta http-equiv='cache-control' content='no-cache' />\n <meta http-equiv='expires' content='0' />\n <meta http-equiv='expires' content='Tue, 01 Jan 1980 1:00:00 GMT' />\n <meta http-equiv='pragma' content='no-cache' />\n <link rel='stylesheet' type='text/css' href='/src/front/style/admin-page.css'>\n ");
$head->addChild(Components::getMenu());
$head->addChildList($this->getHeadContent());
$body = new Body();
$body->addChildList($this->getGeneralContent());
return $this->pagePrefix . $html->addChildList([$head, $body])->getHtml();
}