當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。