本文整理汇总了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>