/administrator/components/com_users/models/forms/note.xml
XML | 126 lines | 112 code | 14 blank | 0 comment | 0 complexity | 26f650b319b5570dcac5c9b3b37137ab 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="id" 6 type="hidden" 7 class="readonly" 8 size="6" 9 default="0" 10 readonly="true" 11 label="COM_USERS_FIELD_ID_LABEL" 12 /> 13 14 <field 15 name="user_id" 16 type="user" 17 size="50" 18 class="inputbox" 19 required="true" 20 label="COM_USERS_FIELD_USER_ID_LABEL" 21 /> 22 23 <field 24 name="catid" 25 type="category" 26 class="inputbox" 27 extension="com_users.notes" 28 label="COM_USERS_FIELD_CATEGORY_ID_LABEL" 29 description="JFIELD_CATEGORY_DESC" > 30 </field> 31 32 <field 33 name="subject" 34 type="text" 35 class="inputbox" 36 size="80" 37 label="COM_USERS_FIELD_SUBJECT_LABEL" 38 description="COM_USERS_FIELD_SUBJECT_DESC" 39 /> 40 41 <field 42 name="body" 43 type="editor" 44 class="inputbox" 45 rows="10" 46 cols="80" 47 filter="safehtml" 48 label="COM_USERS_FIELD_NOTEBODY_LABEL" 49 description="COM_USERS_FIELD_NOTEBODY_DESC" 50 /> 51 52 <field 53 name="state" 54 type="list" 55 label="JSTATUS" 56 description="COM_USERS_FIELD_STATE_DESC" 57 class="inputbox" 58 size="1" 59 default="1"> 60 <option 61 value="1">JPUBLISHED</option> 62 <option 63 value="0">JUNPUBLISHED</option> 64 <option 65 value="2">JARCHIVED</option> 66 <option 67 value="-2">JTRASHED</option> 68 </field> 69 70 <field 71 name="review_time" 72 type="calendar" 73 class="inputbox" 74 label="COM_USERS_FIELD_REVIEW_TIME_LABEL" 75 description="COM_USERS_FIELD_REVIEW_TIME_DESC" 76 default="0000-00-00" 77 format="%Y-%m-%d" 78 /> 79 80 <field 81 name="checked_out" 82 type="hidden" 83 filter="unset" 84 /> 85 86 <field 87 name="checked_out_time" 88 type="hidden" 89 filter="unset" 90 /> 91 92 <field 93 name="created_user_id" 94 type="hidden" 95 filter="unset" 96 /> 97 98 <field 99 name="created_time" 100 type="hidden" 101 filter="unset" 102 /> 103 104 <field 105 name="modified_user_id" 106 type="hidden" 107 filter="unset" 108 /> 109 110 <field 111 name="modified_time" 112 type="hidden" 113 filter="unset" 114 /> 115 116 <field name="publish_up" type="calendar" 117 label="JGLOBAL_FIELD_PUBLISH_UP_LABEL" description="JGLOBAL_FIELD_PUBLISH_UP_DESC" 118 class="inputbox" format="%Y-%m-%d %H:%M:%S" size="22" 119 filter="user_utc" /> 120 121 <field name="publish_down" type="calendar" 122 label="JGLOBAL_FIELD_PUBLISH_DOWN_LABEL" description="JGLOBAL_FIELD_PUBLISH_DOWN_DESC" 123 class="inputbox" format="%Y-%m-%d %H:%M:%S" size="22" 124 filter="user_utc" /> 125 </fieldset> 126</form>