Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. }