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.

27 satır
653B

  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. * \yii\bootstrap\Widget is the base class for all bootstrap widgets.
  10. *
  11. * @author Antonio Ramirez <amigo.cobos@gmail.com>
  12. * @author Qiang Xue <qiang.xue@gmail.com>
  13. * @since 2.0
  14. */
  15. class Widget extends \yii\base\Widget
  16. {
  17. use BootstrapWidgetTrait;
  18. /**
  19. * @var array the HTML attributes for the widget container tag.
  20. * @see \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered.
  21. */
  22. public $options = [];
  23. }