當前位置: 首頁>>代碼示例>>PHP>>正文


PHP TbHtml::heroUnit方法代碼示例

本文整理匯總了PHP中TbHtml::heroUnit方法的典型用法代碼示例。如果您正苦於以下問題:PHP TbHtml::heroUnit方法的具體用法?PHP TbHtml::heroUnit怎麽用?PHP TbHtml::heroUnit使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在TbHtml的用法示例。


在下文中一共展示了TbHtml::heroUnit方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: if

<?php
/* @var $this SiteController */

$this->pageTitle=Yii::app()->name;
?>

<?php //echo TbHtml::pageHeader('', Yii::t('strings',CHtml::encode(Yii::app()->name)))?>
<?php if(!empty(Yii::app()->user->getState('pending-decisions-message'))) : ?>
<?php echo TbHtml::alert(TbHtml::ALERT_COLOR_INFO, Yii::app()->user->getState('pending-decisions-message'),array('style'=>'position:fixed;width:50%;height:200px;margin-left:15%;margin-right:15%')); ?>
<?php Yii::app()->user->setState('pending-decisions-message','');?>
<?php endif; ?>

<?php $aboutContent = 
TbHtml::link('',$this->createUrl('//page/update',array('id'=>$model->id)),array('class'=>TbHtml::ICON_PENCIL)).
"
<h3>$model->title</h3>
<div style='font-size:14px;height:150px;'>
$model->body
</div>
" ;

?>
<?php echo TbHtml::heroUnit(null,$aboutContent);?>
開發者ID:robertgunze,項目名稱:eams,代碼行數:23,代碼來源:index.php

示例2: testHeroUnit

 public function testHeroUnit()
 {
     $I = $this->codeGuy;
     $html = TbHtml::heroUnit('Heading text', 'Content text', array('class' => 'div', 'headingOptions' => array('class' => 'heading')));
     $hero = $I->createNode($html, 'div.hero-unit');
     $I->seeNodeCssClass($hero, 'div');
     $I->seeNodeText($hero, 'Content text');
     $h1 = $hero->filter('h1');
     $I->seeNodeCssClass($h1, 'heading');
     $I->seeNodeText($h1, 'Heading text');
 }
開發者ID:AlexanderGrant1,項目名稱:AC41004,代碼行數:11,代碼來源:TbHtmlTest.php

示例3: run

 /**
  * Runs the widget.
  */
 public function run()
 {
     echo TbHtml::heroUnit($this->heading, $this->content, $this->htmlOptions);
 }
開發者ID:nicovicz,項目名稱:reward-point,代碼行數:7,代碼來源:TbHeroUnit.php

示例4: array

</section>

<!-- Typography
   ================================================== -->
<section id="typography">

   <div class="page-header">
      <h1>Typography</h1>
   </div>

   <h2>Hero unit</h2>

   <div class="bs-docs-example">
      <?php 
echo TbHtml::heroUnit('Hello, world!', '<p>This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p>' . TbHtml::button('Learn more', array('color' => TbHtml::BUTTON_COLOR_PRIMARY, 'size' => TbHtml::BUTTON_SIZE_LARGE)));
?>
   </div>

   <pre class="prettyprint linenums">
&lt;?php echo TbHtml::heroUnit('Hello, world!', '...'); ?></pre>

   <hr class="bs-docs-separator">

   <h2>Page header</h2>

   <div class="bs-docs-example">
      <?php 
echo TbHtml::pageHeader('Example page header', 'Subtext for header');
?>
   </div>
開發者ID:crisu83,項目名稱:yiistrap-docs,代碼行數:30,代碼來源:components.php


注:本文中的TbHtml::heroUnit方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。