Html.php 654 Bytes
Newer Older
Qiang Xue committed
1 2 3 4 5 6 7
<?php
/**
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

Qiang Xue committed
8
namespace yii\helpers;
Qiang Xue committed
9

Qiang Xue committed
10
/**
Qiang Xue committed
11
 * Html provides a set of static methods for generating commonly used HTML tags.
Qiang Xue committed
12
 *
13 14 15 16
 * Nearly all of the methods in this class allow setting additional html attributes for the html
 * tags they generate. You can specify for example. 'class', 'style'  or 'id' for an html element
 * using the `$options` parameter. See the documentation of the [[tag()]] method for more details.
 *
Qiang Xue committed
17 18 19
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @since 2.0
 */
20
class Html extends BaseHtml
Qiang Xue committed
21 22
{
}