Skip to content
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>

Clone this wiki locally