-
Notifications
You must be signed in to change notification settings - Fork 0
Html
Khen Solomon Lethil edited this page May 6, 2016
·
3 revisions
<?php
$this->html(
array(
'div'=>array(
'text'=>'Message goes here',
'attr'=>array(
'class'=>'current'
)
)
)
);<div class="current">Message goes here</div><?php
$this->html(
array(
'div'=>array(
'text'=>array(
'a'=>array(
'text'=>array(
'span'=>'isSpan', 'em'=>'isEm'
),
'attr'=>array(
'href'=>'#'
)
)
),
'attr'=>array(
'class'=>'current'
)
)
)
);<div class="current">
<a href="#">
<span>isSpan</span>
<em>isEm</em>
</a>
</div><?php
$this->html(
array(
'ol'=>array(
'text'=>array(
array(
'li'=>array(
'text'=>array(
'strong'=>'isStrong', 'em'=>'isEm'
),
'attr'=>array(
'class'=>'firstClass'
)
)
),
array(
'li'=>array(
'text'=>'Second',
'attr'=>array(
'class'=>'secondClass'
)
)
)
),
'attr'=>array(
'class'=>'currentClass'
)
)
)
);<ol class="currentClass">
<li class="firstClass">
<strong>isStrong</strong>
<em>isEm</em>
</li>
<li class="secondClass">Second</li>
</ol>emoji icon indicate
- Date/Time 📅
- Callable child Method 〰️
- Core 💫
- Todo 💥
- Need to be improved/fixed 🔨
- Stop 💤
- New 💡
- Note 📌
- Updated/Improved/Fixed 🌱
- Version/Target 🚩
- Changed/Modified: 🔪