1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-15 03:05:26 +02:00

Phpdoc update in InputfieldWrapper for ProcessWireAPI docs

This commit is contained in:
Ryan Cramer
2025-04-17 12:14:26 -04:00
parent 0a317971f8
commit 5f17f5ff9d

View File

@@ -16,6 +16,8 @@
* InputfieldWrapper is not designed to render an Inputfield specifically, but you can set a value attribute * InputfieldWrapper is not designed to render an Inputfield specifically, but you can set a value attribute
* containing content that will be rendered before the wrapper. * containing content that will be rendered before the wrapper.
* *
* #pw-summary-properties Access any common Inputfield type class name from an InputfieldWrapper and it will return a new instance of that Inputfield, i.e. `$f = $inputfields->InputfieldText;` Below are several examples.
*
* @property bool $renderValueMode True when only rendering values, i.e. no inputs (default=false). #pw-internal * @property bool $renderValueMode True when only rendering values, i.e. no inputs (default=false). #pw-internal
* @property bool $quietMode True to suppress label, description and notes, often combined with renderValueMode (default=false). #pw-internal * @property bool $quietMode True to suppress label, description and notes, often combined with renderValueMode (default=false). #pw-internal
* @property int $columnWidthSpacing Percentage spacing between columns or 0 for none. Default pulled from `$config->inputfieldColumnWidthSpacing`. #pw-internal * @property int $columnWidthSpacing Percentage spacing between columns or 0 for none. Default pulled from `$config->inputfieldColumnWidthSpacing`. #pw-internal
@@ -27,47 +29,47 @@
* @method Inputfield new($typeName, $name = '', $label = '', array $settings = []) #pw-group-manipulation * @method Inputfield new($typeName, $name = '', $label = '', array $settings = []) #pw-group-manipulation
* @method bool allowProcessInput(Inputfield $inputfield) Allow Inputfield to have input processed? (3.0.207+) #pw-internal * @method bool allowProcessInput(Inputfield $inputfield) Allow Inputfield to have input processed? (3.0.207+) #pw-internal
* *
* @property InputfieldAsmSelect $InputfieldAsmSelect * @property InputfieldAsmSelect $InputfieldAsmSelect Create new asmSelect Inputfield #pw-group-properties
* @property InputfieldButton $InputfieldButton * @property InputfieldButton $InputfieldButton Create new button Inputfield #pw-group-properties
* @property InputfieldCheckbox $InputfieldCheckbox * @property InputfieldCheckbox $InputfieldCheckbox Create new checkbox Inputfield #pw-group-properties
* @property InputfieldCheckboxes $InputfieldCheckboxes * @property InputfieldCheckboxes $InputfieldCheckboxes Create new checkboxes Inputfield #pw-group-properties
* @property InputfieldCKEditor $InputfieldCkeditor * @property InputfieldCKEditor $InputfieldCKEditor Create new CKEditor Inputfield #pw-group-properties
* @property InputfieldCommentsAdmin $InputfieldCommentsAdmin * @property InputfieldCommentsAdmin $InputfieldCommentsAdmin #pw-internal
* @property InputfieldDatetime $InputfieldDatetime * @property InputfieldDatetime $InputfieldDatetime Create new date/time Inputfield #pw-group-properties
* @property InputfieldEmail $InputfieldEmail * @property InputfieldEmail $InputfieldEmail Create new email Inputfield #pw-group-properties
* @property InputfieldFieldset $InputfieldFieldset * @property InputfieldFieldset $InputfieldFieldset Create new Fieldset InputfieldWrapper #pw-group-properties
* @property InputfieldFieldsetClose $InputfieldlFieldsetClose * @property InputfieldFieldsetClose $InputfieldlFieldsetClose #pw-internal
* @property InputfieldFieldsetOpen $InputfieldFieldsetOpen * @property InputfieldFieldsetOpen $InputfieldFieldsetOpen #pw-internal
* @property InputfieldFieldsetTabOpen $InputfieldFieldsetTabOpen * @property InputfieldFieldsetTabOpen $InputfieldFieldsetTabOpen #pw-internal
* @property InputfieldFile $InputfieldFile * @property InputfieldFile $InputfieldFile Create new file Inputfield #pw-group-properties
* @property InputfieldFloat $InputfieldFloat * @property InputfieldFloat $InputfieldFloat Create new float Inputfield #pw-group-properties
* @property InputfieldForm $InputfieldForm * @property InputfieldForm $InputfieldForm Create new form InputfieldWrapper #pw-group-properties
* @property InputfieldHidden $InputfieldHidden * @property InputfieldHidden $InputfieldHidden Create new hidden Inputfield #pw-group-properties
* @property InputfieldIcon $InputfieldIcon * @property InputfieldIcon $InputfieldIcon Create new icon Inputfield #pw-group-properties
* @property InputfieldImage $InputfieldImage * @property InputfieldImage $InputfieldImage Create new image Inputfield #pw-group-properties
* @property InputfieldInteger $InputfieldInteger * @property InputfieldInteger $InputfieldInteger Create new integer Inputfield #pw-group-properties
* @property InputfieldMarkup $InputfieldMarkup * @property InputfieldMarkup $InputfieldMarkup Create new markup Inputfield #pw-group-properties
* @property InputfieldName $InputfieldName * @property InputfieldName $InputfieldName #pw-internal
* @property InputfieldPage $InputfieldPage * @property InputfieldPage $InputfieldPage Create new Page selection Inputfield #pw-group-properties
* @property InputfieldPageAutocomplete $InputfieldPageAutocomplete * @property InputfieldPageAutocomplete $InputfieldPageAutocomplete Create new Page selection autocomplete Inputfield #pw-group-properties
* @property InputfieldPageListSelect $InputfieldPageListSelect * @property InputfieldPageListSelect $InputfieldPageListSelect Create new PageListSelect Inputfield #pw-group-properties
* @property InputfieldPageListSelectMultiple $InputfieldPageListSelectMultiple * @property InputfieldPageListSelectMultiple $InputfieldPageListSelectMultiple Create new multiple PageListSelect Inputfield #pw-group-properties
* @property InputfieldPageName $InputfieldPageName * @property InputfieldPageName $InputfieldPageName #pw-internal
* @property InputfieldPageTable $InputfieldPageTable * @property InputfieldPageTable $InputfieldPageTable #pw-internal
* @property InputfieldPageTitle $InputfieldPageTitle * @property InputfieldPageTitle $InputfieldPageTitle #pw-internal
* @property InputfieldPassword $InputfieldPassword * @property InputfieldPassword $InputfieldPassword #pw-internal
* @property InputfieldRadios $InputfieldRadios * @property InputfieldRadios $InputfieldRadios Create new radio buttons Inputfield #pw-group-properties
* @property InputfieldRepeater $InputfieldRepeater * @property InputfieldRepeater $InputfieldRepeater #pw-internal
* @property InputfieldSelect $InputfieldSelect * @property InputfieldSelect $InputfieldSelect Create new <select> Inputfield #pw-group-properties
* @property InputfieldSelectMultiple $InputfieldSelectMultiple * @property InputfieldSelectMultiple $InputfieldSelectMultiple Create new <select multiple> Inputfield #pw-group-properties
* @property InputfieldSelector $InputfieldSelector * @property InputfieldSelector $InputfieldSelector #pw-internal
* @property InputfieldSubmit $InputfieldSubmit * @property InputfieldSubmit $InputfieldSubmit Create new submit button Inputfield #pw-group-properties
* @property InputfieldText $InputfieldText * @property InputfieldText $InputfieldText Create new single-line text Inputfield #pw-group-properties
* @property InputfieldTextarea $InputfieldTextarea * @property InputfieldTextarea $InputfieldTextarea Create new multi-line <textarea> Inputfield #pw-group-properties
* @property InputfieldTextTags $InputfieldTextTags * @property InputfieldTextTags $InputfieldTextTags Create new text tags Inputfield #pw-group-properties
* @property InputfieldToggle $InputfieldToggle * @property InputfieldToggle $InputfieldToggle Create new toggle Inputfield #pw-group-properties
* @property InputfieldURL $InputfieldURL * @property InputfieldURL $InputfieldURL Create new URL Inputfield #pw-group-properties
* @property InputfieldWrapper $InputfieldWrapper * @property InputfieldWrapper $InputfieldWrapper Create new generic InputfieldWrapper #pw-group-properties
* *
*/ */