Browse Source

property code style extensions

tags/2.0.0-rc
Carsten Brandt 10 years ago
parent
commit
83489d3684
  1. 12
      ActiveField.php
  2. 2
      ActiveForm.php
  3. 1
      Alert.php
  4. 1
      Button.php
  5. 1
      ButtonDropdown.php
  6. 1
      ButtonGroup.php
  7. 1
      Carousel.php
  8. 1
      Collapse.php
  9. 1
      Dropdown.php
  10. 1
      Modal.php
  11. 1
      Nav.php
  12. 1
      NavBar.php
  13. 1
      Progress.php
  14. 1
      Tabs.php
  15. 1
      Widget.php

12
ActiveField.php

@ -95,17 +95,14 @@ class ActiveField extends \yii\widgets\ActiveField
* @var bool whether to render [[checkboxList()]] and [[radioList()]] inline. * @var bool whether to render [[checkboxList()]] and [[radioList()]] inline.
*/ */
public $inline = false; public $inline = false;
/** /**
* @var string|null optional template to render the `{input}` placeholder content * @var string|null optional template to render the `{input}` placeholder content
*/ */
public $inputTemplate; public $inputTemplate;
/** /**
* @var array options for the wrapper tag, used in the `{beginWrapper}` placeholder * @var array options for the wrapper tag, used in the `{beginWrapper}` placeholder
*/ */
public $wrapperOptions = []; public $wrapperOptions = [];
/** /**
* @var null|array CSS grid classes for horizontal layout. This must be an array with these keys: * @var null|array CSS grid classes for horizontal layout. This must be an array with these keys:
* - 'offset' the offset grid class to append to the wrapper if no label is rendered * - 'offset' the offset grid class to append to the wrapper if no label is rendered
@ -115,47 +112,40 @@ class ActiveField extends \yii\widgets\ActiveField
* - 'hint' the hint grid class * - 'hint' the hint grid class
*/ */
public $horizontalCssClasses; public $horizontalCssClasses;
/** /**
* @var string the template for checkboxes in default layout * @var string the template for checkboxes in default layout
*/ */
public $checkboxTemplate = "<div class=\"checkbox\">\n{beginLabel}\n{input}\n{labelTitle}\n{endLabel}\n{error}\n{hint}\n</div>"; public $checkboxTemplate = "<div class=\"checkbox\">\n{beginLabel}\n{input}\n{labelTitle}\n{endLabel}\n{error}\n{hint}\n</div>";
/** /**
* @var string the template for radios in default layout * @var string the template for radios in default layout
*/ */
public $radioTemplate = "<div class=\"radio\">\n{beginLabel}\n{input}\n{labelTitle}\n{endLabel}\n{error}\n{hint}\n</div>"; public $radioTemplate = "<div class=\"radio\">\n{beginLabel}\n{input}\n{labelTitle}\n{endLabel}\n{error}\n{hint}\n</div>";
/** /**
* @var string the template for checkboxes in horizontal layout * @var string the template for checkboxes in horizontal layout
*/ */
public $horizontalCheckboxTemplate = "{beginWrapper}\n<div class=\"checkbox\">\n{beginLabel}\n{input}\n{labelTitle}\n{endLabel}\n</div>\n{error}\n{endWrapper}\n{hint}"; public $horizontalCheckboxTemplate = "{beginWrapper}\n<div class=\"checkbox\">\n{beginLabel}\n{input}\n{labelTitle}\n{endLabel}\n</div>\n{error}\n{endWrapper}\n{hint}";
/** /**
* @var string the template for radio buttons in horizontal layout * @var string the template for radio buttons in horizontal layout
*/ */
public $horizontalRadioTemplate = "{beginWrapper}\n<div class=\"radio\">\n{beginLabel}\n{input}\n{labelTitle}\n{endLabel}\n</div>\n{error}\n{endWrapper}\n{hint}"; public $horizontalRadioTemplate = "{beginWrapper}\n<div class=\"radio\">\n{beginLabel}\n{input}\n{labelTitle}\n{endLabel}\n</div>\n{error}\n{endWrapper}\n{hint}";
/** /**
* @var string the template for inline checkboxLists * @var string the template for inline checkboxLists
*/ */
public $inlineCheckboxListTemplate = "{label}\n{beginWrapper}\n{input}\n{error}\n{endWrapper}\n{hint}"; public $inlineCheckboxListTemplate = "{label}\n{beginWrapper}\n{input}\n{error}\n{endWrapper}\n{hint}";
/** /**
* @var string the template for inline radioLists * @var string the template for inline radioLists
*/ */
public $inlineRadioListTemplate = "{label}\n{beginWrapper}\n{input}\n{error}\n{endWrapper}\n{hint}"; public $inlineRadioListTemplate = "{label}\n{beginWrapper}\n{input}\n{error}\n{endWrapper}\n{hint}";
/** /**
* @var bool whether to render the error. Default is `true` except for layout `inline`. * @var bool whether to render the error. Default is `true` except for layout `inline`.
*/ */
public $enableError = true; public $enableError = true;
/** /**
* @var bool whether to render the label. Default is `true`. * @var bool whether to render the label. Default is `true`.
*/ */
public $enableLabel = true; public $enableLabel = true;
/** /**
* @inheritdoc * @inheritdoc
*/ */

2
ActiveForm.php

@ -69,7 +69,6 @@ class ActiveForm extends \yii\widgets\ActiveForm
* @var array HTML attributes for the form tag. Default is `['role' => 'form']`. * @var array HTML attributes for the form tag. Default is `['role' => 'form']`.
*/ */
public $options = ['role' => 'form']; public $options = ['role' => 'form'];
/** /**
* @var string the form layout. Either 'default', 'horizontal' or 'inline'. * @var string the form layout. Either 'default', 'horizontal' or 'inline'.
* By choosing a layout, an appropriate default field configuration is applied. This will * By choosing a layout, an appropriate default field configuration is applied. This will
@ -79,6 +78,7 @@ class ActiveForm extends \yii\widgets\ActiveForm
*/ */
public $layout = 'default'; public $layout = 'default';
/** /**
* @inheritdoc * @inheritdoc
*/ */

1
Alert.php

@ -68,6 +68,7 @@ class Alert extends Widget
*/ */
public $closeButton = []; public $closeButton = [];
/** /**
* Initializes the widget. * Initializes the widget.
*/ */

1
Button.php

@ -39,6 +39,7 @@ class Button extends Widget
*/ */
public $encodeLabel = true; public $encodeLabel = true;
/** /**
* Initializes the widget. * Initializes the widget.
* If you override this method, make sure you call the parent implementation first. * If you override this method, make sure you call the parent implementation first.

1
ButtonDropdown.php

@ -59,6 +59,7 @@ class ButtonDropdown extends Widget
*/ */
public $encodeLabel = true; public $encodeLabel = true;
/** /**
* Renders the widget. * Renders the widget.
*/ */

1
ButtonGroup.php

@ -52,6 +52,7 @@ class ButtonGroup extends Widget
*/ */
public $encodeLabels = true; public $encodeLabels = true;
/** /**
* Initializes the widget. * Initializes the widget.
* If you override this method, make sure you call the parent implementation first. * If you override this method, make sure you call the parent implementation first.

1
Carousel.php

@ -66,6 +66,7 @@ class Carousel extends Widget
*/ */
public $items = []; public $items = [];
/** /**
* Initializes the widget. * Initializes the widget.
*/ */

1
Collapse.php

@ -59,6 +59,7 @@ class Collapse extends Widget
*/ */
public $items = []; public $items = [];
/** /**
* Initializes the widget. * Initializes the widget.
*/ */

1
Dropdown.php

@ -46,6 +46,7 @@ class Dropdown extends Widget
*/ */
protected $_containerOptions = []; protected $_containerOptions = [];
/** /**
* Initializes the widget. * Initializes the widget.
* If you override this method, make sure you call the parent implementation first. * If you override this method, make sure you call the parent implementation first.

1
Modal.php

@ -82,6 +82,7 @@ class Modal extends Widget
*/ */
public $toggleButton; public $toggleButton;
/** /**
* Initializes the widget. * Initializes the widget.
*/ */

1
Nav.php

@ -93,6 +93,7 @@ class Nav extends Widget
*/ */
public $params; public $params;
/** /**
* Initializes the widget. * Initializes the widget.
*/ */

1
NavBar.php

@ -85,6 +85,7 @@ class NavBar extends Widget
*/ */
public $innerContainerOptions = []; public $innerContainerOptions = [];
/** /**
* Initializes the widget. * Initializes the widget.
*/ */

1
Progress.php

@ -89,6 +89,7 @@ class Progress extends Widget
*/ */
public $bars; public $bars;
/** /**
* Initializes the widget. * Initializes the widget.
* If you override this method, make sure you call the parent implementation first. * If you override this method, make sure you call the parent implementation first.

1
Tabs.php

@ -102,6 +102,7 @@ class Tabs extends Widget
*/ */
public $navType = 'nav-tabs'; public $navType = 'nav-tabs';
/** /**
* Initializes the widget. * Initializes the widget.
*/ */

1
Widget.php

@ -39,6 +39,7 @@ class Widget extends \yii\base\Widget
*/ */
public $clientEvents = []; public $clientEvents = [];
/** /**
* Initializes the widget. * Initializes the widget.
* This method will register the bootstrap asset bundle. If you override this method, * This method will register the bootstrap asset bundle. If you override this method,

Loading…
Cancel
Save