-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathintellij-latte-pro.xml
61 lines (61 loc) · 3.17 KB
/
intellij-latte-pro.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE latte PUBLIC "-//LATTE//Latte plugin XML V0.0.1//EN" ".idea/intellij-latte-pro/xmlSources/Latte.dtd">
<latte vendor="efabrica/neoforms" version="1">
<tags>
<tag name="neoForm" type="PAIR">
<arguments>
<argument
name="formControl" types="CONTROL|PHP_EXPRESSION" required="true" repeatable="true"
type="\Efabrica\NeoForms\Build\NeoFormControl|\Efabrica\NeoForms\Build\NeoForm"/>
<argument name="options" types="KEY_VALUE"/>
</arguments>
</tag>
<tag name="formSection" type="UNPAIRED" description="Renders a section title for a group">
<arguments>
<argument name="label" types="PHP_EXPRESSION" type="string"/>
</arguments>
</tag>
<tag name="formRow" type="UNPAIRED_ATTR" description="Renders form label and input inside of a form group">
<arguments>
<argument name="element" types="PHP_EXPRESSION" type="\Nette\Forms\Controls\BaseControl"/>
<argument name="attrs" types="KEY_VALUE"/>
</arguments>
</tag>
<tag name="formGroup" type="UNPAIRED_ATTR" description="Renders form label and input inside of a form group">
<arguments>
<argument name="element" types="PHP_EXPRESSION" type="\Nette\Forms\Controls\BaseControl"/>
<argument name="attrs" types="KEY_VALUE"/>
</arguments>
</tag>
<tag name="formRowGroup" type="PAIR" description="Renders form group wrapper">
<arguments>
<argument name="element" types="PHP_EXPRESSION" type="\Nette\Forms\Controls\BaseControl"/>
<argument name="attrs" types="KEY_VALUE"/>
</arguments>
</tag>
<tag name="formRest" type="UNPAIRED_ATTR" description="Renders rest of the form that wasn't explicitly specified">
<arguments>
<argument name="element" types="PHP_EXPRESSION" type="\Nette\Forms\Controls\BaseControl"/>
<argument name="attrs" types="KEY_VALUE"/>
</arguments>
</tag>
<tag name="formInput" type="UNPAIRED_ATTR" description="Renders form input without label and group">
<arguments>
<argument name="element" types="PHP_EXPRESSION" type="\Nette\Forms\Controls\BaseControl"/>
<argument name="attrs" types="KEY_VALUE"/>
</arguments>
</tag>
<tag name="formLabel" type="UNPAIRED_ATTR" description="Renders form label without input and group">
<arguments>
<argument name="element" types="PHP_EXPRESSION" type="\Nette\Forms\Controls\BaseControl"/>
<argument name="attrs" types="KEY_VALUE"/>
</arguments>
</tag>
<tag name="formErrors" type="UNPAIRED_ATTR" description="Renders form's or input's errors">
<arguments>
<argument name="element" types="PHP_EXPRESSION" type="\Nette\Forms\Controls\BaseControl"/>
<argument name="attrs" types="KEY_VALUE"/>
</arguments>
</tag>
</tags>
</latte>