/administrator/components/com_plugins/models/forms/plugin.xml
XML | 69 lines | 62 code | 7 blank | 0 comment | 0 complexity | ab3ac2c55cdc7f7854ba82e0c059e7c8 MD5 | raw file
Possible License(s): LGPL-2.1
1<?xml version="1.0" encoding="utf-8"?> 2<form> 3 <fieldset> 4 <field 5 name="extension_id" 6 label="JGLOBAL_FIELD_ID_LABEL" 7 description ="JGLOBAL_FIELD_ID_DESC" 8 type="text" 9 default="0" 10 readonly="true" 11 class="readonly" /> 12 13 <field 14 name="name" 15 type="hidden" 16 label="COM_PLUGINS_FIELD_NAME_LABEL" 17 description="COM_PLUGINS_FIELD_NAME_DESC" /> 18 19 <field 20 name="enabled" 21 type="list" 22 label="JSTATUS" 23 description="COM_PLUGINS_FIELD_ENABLED_DESC" 24 class="inputbox" 25 size="1" 26 default="1"> 27 <option 28 value="1"> 29 JENABLED</option> 30 <option 31 value="0"> 32 JDISABLED</option> 33 </field> 34 35 <field 36 name="folder" 37 type="text" 38 class="readonly" 39 size="20" 40 label="COM_PLUGINS_FIELD_FOLDER_LABEL" 41 description="COM_PLUGINS_FIELD_FOLDER_DESC" 42 readonly="true" /> 43 44 <field 45 name="element" 46 type="text" 47 class="readonly" 48 size="20" 49 label="COM_PLUGINS_FIELD_ELEMENT_LABEL" 50 description="COM_PLUGINS_FIELD_ELEMENT_DESC" 51 readonly="true" /> 52 53 <field 54 name="access" 55 type="accesslevel" 56 label="JFIELD_ACCESS_LABEL" 57 description="JFIELD_ACCESS_DESC" 58 class="inputbox" 59 size="1" /> 60 61 <field 62 name="ordering" 63 type="ordering" 64 class="inputbox" 65 label="JFIELD_ORDERING_LABEL" 66 description="JFIELD_ORDERING_DESC" /> 67 68 </fieldset> 69</form>