当前位置: 首页>>代码示例>>PHP>>正文


PHP X2Html::openBodyTag方法代码示例

本文整理汇总了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 
开发者ID:shuvro35,项目名称:X2CRM,代码行数:31,代码来源:main.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>
开发者ID:tymiles003,项目名称:X2CRM,代码行数:30,代码来源:login.php


注:本文中的X2Html::openBodyTag方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。