File tree Expand file tree Collapse file tree 10 files changed +0
-28
lines changed Expand file tree Collapse file tree 10 files changed +0
-28
lines changed Original file line number Diff line number Diff line change 1313/**
1414 * Container for form controls.
1515 *
16- * @property-write $defaults
1716 * @property Nette\Utils\ArrayHash $values
18- * @property-read bool $valid
19- * @property ControlGroup $currentGroup
2017 * @property-read \ArrayIterator $controls
2118 * @property-read Form $form
2219 */
Original file line number Diff line number Diff line change 1212
1313/**
1414 * A user group of form controls.
15- *
16- * @property-read array $controls
17- * @property-read array $options
1815 */
1916class ControlGroup extends Nette \Object
2017{
Original file line number Diff line number Diff line change 1919 * @property-read Form $form
2020 * @property-read string $htmlName
2121 * @property string $htmlId
22- * @property-read array $options
23- * @property Nette\Localization\ITranslator|NULL $translator
2422 * @property mixed $value
25- * @property-read bool $filled
26- * @property-write $defaultValue
2723 * @property bool $disabled
2824 * @property bool $omitted
2925 * @property-read Html $control
3026 * @property-read Html $label
3127 * @property-read Html $controlPrototype
3228 * @property-read Html $labelPrototype
33- * @property-read Nette\Forms\Rules $rules
3429 * @property bool $required
3530 * @property-read array $errors
3631 */
Original file line number Diff line number Diff line change 1515 *
1616 * @property array $items
1717 * @property-read mixed $selectedItem
18- * @property-read mixed $rawValue
1918 */
2019abstract class ChoiceControl extends BaseControl
2120{
Original file line number Diff line number Diff line change 1515 *
1616 * @property array $items
1717 * @property-read array $selectedItems
18- * @property-read array $rawValue
1918 */
2019abstract class MultiChoiceControl extends BaseControl
2120{
Original file line number Diff line number Diff line change 1212
1313/**
1414 * Select box control that allows single item selection.
15- *
16- * @property bool $prompt
1715 */
1816class SelectBox extends ChoiceControl
1917{
Original file line number Diff line number Diff line change 1414 * Submittable button control.
1515 *
1616 * @property-read bool $submittedBy
17- * @property mixed $validationScope
1817 */
1918class SubmitButton extends Button implements Nette \Forms \ISubmitterControl
2019{
Original file line number Diff line number Diff line change 1414
1515/**
1616 * Implements the basic functionality common to text input controls.
17- *
18- * @property string $emptyValue
1917 */
2018abstract class TextBase extends BaseControl
2119{
Original file line number Diff line number Diff line change 1313
1414/**
1515 * Single line text input control.
16- * @property-write $type
1716 */
1817class TextInput extends TextBase
1918{
Original file line number Diff line number Diff line change 1313/**
1414 * Creates, validates and renders HTML forms.
1515 *
16- * @property mixed $action
17- * @property string $method
18- * @property-read array $groups
19- * @property Nette\Localization\ITranslator|NULL $translator
20- * @property-read bool $anchored
21- * @property-read ISubmitterControl|FALSE $submitted
22- * @property-read bool $success
23- * @property-read array $httpData
2416 * @property-read array $errors
2517 * @property-read Nette\Utils\Html $elementPrototype
26- * @property IFormRenderer $renderer
2718 */
2819class Form extends Container implements Nette \Utils \IHtmlString
2920{
You can’t perform that action at this time.
0 commit comments