You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
635 B
22 lines
635 B
10 years ago
|
<?php
|
||
|
/**
|
||
|
* @link http://www.yiiframework.com/
|
||
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
||
|
* @license http://www.yiiframework.com/license/
|
||
|
*/
|
||
|
|
||
|
namespace yii\bootstrap;
|
||
|
|
||
|
/**
|
||
|
* Html is an enhanced version of [[\yii\helpers\Html]] helper class dedicated to Bootstrap needs.
|
||
|
* This class inherits all functionality available at [[\yii\helpers\Html]] and can be used as substitute.
|
||
|
*
|
||
|
* Attention: do not confuse [[\yii\bootstrap\Html]] and [[\yii\helpers\Html]], be careful in which class
|
||
|
* you are using inside your views.
|
||
|
*
|
||
|
* @author Paul Klimov <klimov.paul@gmail.com>
|
||
|
* @since 2.0.4
|
||
|
*/
|
||
|
class Html extends BaseHtml
|
||
|
{
|
||
|
}
|