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.

23 lines
654B

  1. <?php
  2. /**
  3. * @link http://www.yiiframework.com/
  4. * @copyright Copyright (c) 2008 Yii Software LLC
  5. * @license http://www.yiiframework.com/license/
  6. */
  7. namespace yii\helpers;
  8. /**
  9. * Html provides a set of static methods for generating commonly used HTML tags.
  10. *
  11. * Nearly all of the methods in this class allow setting additional html attributes for the html
  12. * tags they generate. You can specify for example. 'class', 'style' or 'id' for an html element
  13. * using the `$options` parameter. See the documentation of the [[tag()]] method for more details.
  14. *
  15. * @author Qiang Xue <qiang.xue@gmail.com>
  16. * @since 2.0
  17. */
  18. class Html extends BaseHtml
  19. {
  20. }