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 lines
653 B
27 lines
653 B
12 years ago
|
<?php
|
||
|
/**
|
||
|
* @link http://www.yiiframework.com/
|
||
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
||
|
* @license http://www.yiiframework.com/license/
|
||
|
*/
|
||
|
|
||
12 years ago
|
namespace yii\bootstrap;
|
||
12 years ago
|
|
||
|
/**
|
||
12 years ago
|
* \yii\bootstrap\Widget is the base class for all bootstrap widgets.
|
||
12 years ago
|
*
|
||
|
* @author Antonio Ramirez <amigo.cobos@gmail.com>
|
||
12 years ago
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
||
12 years ago
|
* @since 2.0
|
||
|
*/
|
||
12 years ago
|
class Widget extends \yii\base\Widget
|
||
12 years ago
|
{
|
||
10 years ago
|
use BootstrapWidgetTrait;
|
||
|
|
||
11 years ago
|
/**
|
||
|
* @var array the HTML attributes for the widget container tag.
|
||
|
* @see \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered.
|
||
|
*/
|
||
|
public $options = [];
|
||
12 years ago
|
}
|