-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1f35116
commit 6705822
Showing
5 changed files
with
114 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,95 +1,5 @@ | ||
# Text und HTML Elemente | ||
# Text- und HTML Elemente | ||
|
||
|
||
Mit der Gruppe Text- und HTML-Elemente wird die Möglichkeit bereitgestellt Beschreibungstexte und individuellen HTML-Code im Formular zu integrieren. | ||
**Dieser Bereich der Doku muss noch ausgearbeitet werden.** | ||
|
||
|
||
### Strukturelle und informative Formular Elemente | ||
|
||
|
||
###### Die strukturellen und informativen Formular Elemente werden jeweils durch ihre eigene Methoden angesteuert: | ||
|
||
|
||
* `addHtml` | ||
* `addHeadline` | ||
* `addDescription` | ||
|
||
|
||
Die Konstruktoren der informativen Element-Methoden `addHtml`, `addHeadline`, `addDescription` erwartet jeweils ein Übergabewert. Der Konstruktor des strukturellen Formular Elements `addFieldset` erwartet 2 Übergabewerte. | ||
|
||
|
||
###### Erwarteter Übergabewert der informativen Element-Methoden: | ||
|
||
|
||
`($strValue)` | ||
|
||
|
||
###### Erwarteter Übergabewert der strukturellen Element-Methoden: | ||
|
||
|
||
`($strValue, $arrAttributes)` | ||
|
||
|
||
* $strValue => `string` | ||
* $arrAttributes => `array('label'=>'Label Name')` | ||
|
||
|
||
##### Hinweis: | ||
|
||
|
||
* Alle Übergabewerte sind optional. | ||
* Attribute können nur als Arrays übergeben werden. | ||
* Attribute stehen nur für strukturelle Formular Elemente zur Verfügung. | ||
|
||
|
||
###### HTML Element | ||
|
||
|
||
```php | ||
$objForm->addHtml('<b>HTML Code</b>'); | ||
``` | ||
|
||
|
||
###### Headline-Element | ||
|
||
|
||
```php | ||
$objForm->addHeadline('Text Elemente'); | ||
``` | ||
|
||
|
||
###### Description-Element | ||
|
||
|
||
```php | ||
$objForm->addDescription('Beschreibungstext auch Mehrzeilig'); | ||
``` | ||
|
||
###### Fieldset-Element | ||
|
||
|
||
```php | ||
$objForm->addFieldset('Fieldset',array('class'=>'myfieldset')); | ||
``` | ||
|
||
|
||
##### Hinweis: | ||
|
||
|
||
* Wird ein Fieldset angelegt ist dieses: | ||
- a) bis zum Ende des Formulars geöffnet und schließt nach dem letzten Formular-Element oder | ||
- b) geöffnet bis ein anderes Fieldset-Element angelegt wird und umschließt folglich alle Elemente vom Fieldset-Element-Methode zu Fieldset-Element-Methode | ||
|
||
|
||
*** | ||
|
||
|
||
### Attribute in strukturellen Elementen | ||
|
||
|
||
##### Wiki-Links zum Thema: | ||
|
||
|
||
* Grundlagen | ||
* [Elementzuweisungen](https://github.com/FriendsOfREDAXO/mform/wiki/Elementzuweisungen) | ||
* [Elementen Attribute zuweisen](https://github.com/FriendsOfREDAXO/mform/wiki/Elementen-Attribute-zuweisen) |
95 changes: 95 additions & 0 deletions
95
plugins/docs/docs/de_de/form_text_html_workingversion_dump.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
# Text und HTML Elemente | ||
|
||
|
||
Mit der Gruppe Text- und HTML-Elemente wird die Möglichkeit bereitgestellt Beschreibungstexte und individuellen HTML-Code im Formular zu integrieren. | ||
|
||
|
||
### Strukturelle und informative Formular Elemente | ||
|
||
|
||
###### Die strukturellen und informativen Formular Elemente werden jeweils durch ihre eigene Methoden angesteuert: | ||
|
||
|
||
* `addHtml` | ||
* `addHeadline` | ||
* `addDescription` | ||
|
||
|
||
Die Konstruktoren der informativen Element-Methoden `addHtml`, `addHeadline`, `addDescription` erwartet jeweils ein Übergabewert. Der Konstruktor des strukturellen Formular Elements `addFieldset` erwartet 2 Übergabewerte. | ||
|
||
|
||
###### Erwarteter Übergabewert der informativen Element-Methoden: | ||
|
||
|
||
`($strValue)` | ||
|
||
|
||
###### Erwarteter Übergabewert der strukturellen Element-Methoden: | ||
|
||
|
||
`($strValue, $arrAttributes)` | ||
|
||
|
||
* $strValue => `string` | ||
* $arrAttributes => `array('label'=>'Label Name')` | ||
|
||
|
||
##### Hinweis: | ||
|
||
|
||
* Alle Übergabewerte sind optional. | ||
* Attribute können nur als Arrays übergeben werden. | ||
* Attribute stehen nur für strukturelle Formular Elemente zur Verfügung. | ||
|
||
|
||
###### HTML Element | ||
|
||
|
||
```php | ||
$objForm->addHtml('<b>HTML Code</b>'); | ||
``` | ||
|
||
|
||
###### Headline-Element | ||
|
||
|
||
```php | ||
$objForm->addHeadline('Text Elemente'); | ||
``` | ||
|
||
|
||
###### Description-Element | ||
|
||
|
||
```php | ||
$objForm->addDescription('Beschreibungstext auch Mehrzeilig'); | ||
``` | ||
|
||
###### Fieldset-Element | ||
|
||
|
||
```php | ||
$objForm->addFieldset('Fieldset',array('class'=>'myfieldset')); | ||
``` | ||
|
||
|
||
##### Hinweis: | ||
|
||
|
||
* Wird ein Fieldset angelegt ist dieses: | ||
- a) bis zum Ende des Formulars geöffnet und schließt nach dem letzten Formular-Element oder | ||
- b) geöffnet bis ein anderes Fieldset-Element angelegt wird und umschließt folglich alle Elemente vom Fieldset-Element-Methode zu Fieldset-Element-Methode | ||
|
||
|
||
*** | ||
|
||
|
||
### Attribute in strukturellen Elementen | ||
|
||
|
||
##### Wiki-Links zum Thema: | ||
|
||
|
||
* Grundlagen | ||
* [Elementzuweisungen](https://github.com/FriendsOfREDAXO/mform/wiki/Elementzuweisungen) | ||
* [Elementen Attribute zuweisen](https://github.com/FriendsOfREDAXO/mform/wiki/Elementen-Attribute-zuweisen) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters