Chtml -> Bootstrap -> Wihtout Any Extensions

How could I do that with CHtml ?


<button class="btn btn-app btn-warning">

<i class="icon-undo bigger-230"></i>

Undo

</button>

I’ve tried the following without success:


echo CHtml::link('myLabelText',array('MyController/index'), array(

	'class' =>'cMyOwnClass btn btn-app btn-warning',

	'icon'=>'icon-undo',

));

CHtml not support bootstrap, try


echo CHtml::link('<i class="icon-undo bigger-230"></i>

Undo',array('MyController/index'), array(

	'class' =>'cMyOwnClass btn btn-app btn-warning'

));