diff --git a/ActiveField.php b/ActiveField.php index 634dc47..96ce103 100644 --- a/ActiveField.php +++ b/ActiveField.php @@ -298,6 +298,7 @@ class ActiveField extends \yii\widgets\ActiveField * * @return $this the field object itself * @since 2.0.5 + * @see http://getbootstrap.com/css/#forms-controls-static */ public function staticControl($options = []) { diff --git a/BaseHtml.php b/BaseHtml.php index 3b97ed2..7096797 100644 --- a/BaseHtml.php +++ b/BaseHtml.php @@ -20,8 +20,7 @@ use yii\helpers\ArrayHelper; class BaseHtml extends \yii\helpers\Html { /** - * Composes icon HTML. - * @see http://getbootstrap.com/components/#glyphicons + * Composes icon HTML for bootstrap Glyphicons. * @param string $name icon short name, for example: 'star' * @param array $options the tag options in terms of name-value pairs. These will be rendered as * the attributes of the resulting tag. There are also a special options: @@ -30,6 +29,7 @@ class BaseHtml extends \yii\helpers\Html * - prefix: string, prefix which should be used to compose tag class, by default 'glyphicon glyphicon-' is used. * * @return string icon HTML. + * @see http://getbootstrap.com/components/#glyphicons */ public static function icon($name, $options = []) { @@ -41,7 +41,7 @@ class BaseHtml extends \yii\helpers\Html /** * Renders Bootstrap static form control. - * @see http://getbootstrap.com/css/#forms-controls-static + * * By default value will be HTML-encoded using [[encode()]], you may control this behavior * via 'encode' option. * @param string $value static control value. @@ -51,6 +51,7 @@ class BaseHtml extends \yii\helpers\Html * - encode: boolean, whether value should be HTML-encoded or not. * * @return string generated HTML + * @see http://getbootstrap.com/css/#forms-controls-static */ public static function staticControl($value, $options = []) { @@ -72,6 +73,7 @@ class BaseHtml extends \yii\helpers\Html * about attribute expression. * @param array $options the tag options in terms of name-value pairs. See [[staticControl()]] for details. * @return string generated HTML + * @see staticControl() */ public static function activeStaticControl($model, $attribute, $options = []) { @@ -83,4 +85,4 @@ class BaseHtml extends \yii\helpers\Html } return static::staticControl($value, $options); } -} \ No newline at end of file +} diff --git a/Collapse.php b/Collapse.php index b2de61f..09335b7 100644 --- a/Collapse.php +++ b/Collapse.php @@ -65,7 +65,6 @@ class Collapse extends Widget * - contentOptions: optional, the HTML attributes of the group's content */ public $items = []; - /** * @var boolean whether the labels for header items should be HTML-encoded. */