本文整理匯總了PHP中X2Html::openBodyTag方法的典型用法代碼示例。如果您正苦於以下問題:PHP X2Html::openBodyTag方法的具體用法?PHP X2Html::openBodyTag怎麽用?PHP X2Html::openBodyTag使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類X2Html
的用法示例。
在下文中一共展示了X2Html::openBodyTag方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: foreach
echo CHtml::encode($this->pageTitle);
?>
</title>
<?php
if (method_exists($this, 'renderGaCode')) {
$this->renderGaCode('internal');
}
if (RESPONSIVE_LAYOUT) {
?>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<?php
}
?>
</head>
<?php
echo X2Html::openBodyTag($preferences);
//if (YII_DEBUG && YII_UNIT_TESTING) {
// echo "<div id='qunit'></div>";
//}
?>
<div id="page-container">
<div id="page">
<?php
if (count($adminFlashes) > 0) {
foreach ($adminFlashes as $index => $message) {
echo CHtml::tag('div', array('class' => "admin-flash-message flash-message-{$index}"), $message);
}
}
?>
<div id="header" <?php
示例2: array
?>
" type="image/x-icon">
<!--[if lt IE 8]>
<link rel="stylesheet" type="text/css" href="<?php
echo $themeURL;
?>
/css/ie.css" media="screen, projection" />
<![endif]-->
<title><?php
echo CHtml::encode($this->pageTitle);
?>
</title>
</head>
<?php
echo X2Html::openBodyTag($preferences, array('id' => 'body-tag', 'class' => 'login'));
?>
<meta name="viewport" content="width=device-width, initial-scale=0.8, user-scalable=no">
<!--<div class="ie-shadow" style="display:none;"></div>-->
<?php
echo $content;
?>
<div class='background'>
<!--<div class='stripe-container'>-->
<!--<div class='stripe small' style="float:left"></div>-->
<!--<div class='stripe' style="float:left"></div>-->
<!--<div class='stripe small' style="float:right"></div>-->
<!--<div class='stripe' style="float:right"></div>-->
<!--</div>-->
</div>