Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

23 lines
639B

  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\bootstrap;
  8. /**
  9. * Html is an enhanced version of [[\yii\helpers\Html]] helper class dedicated to the Bootstrap needs.
  10. * This class inherits all functionality available at [[\yii\helpers\Html]] and can be used as substitute.
  11. *
  12. * Attention: do not confuse [[\yii\bootstrap\Html]] and [[\yii\helpers\Html]], be careful in which class
  13. * you are using inside your views.
  14. *
  15. * @author Paul Klimov <klimov.paul@gmail.com>
  16. * @since 2.0.5
  17. */
  18. class Html extends BaseHtml
  19. {
  20. }