Documentation
LIST
usage
<SEARCH><LIST [domain="..."] [name="..."] [languageID="..."]/></SEARCH>
paramètres
name,domain,languageID
retourne
XML
Lists are used in your projects or applications for the semi-dynamic listings with associated labels/values, like cities, titles, administrative codes, etc.
These lists are part of the Webdesigner work, so the managment of theses lists is NOT integrated in Nectil OS application, you have to edit them in the lists table MySQL (with phpMyAdmin for example):
- Table: 'lists'
- Fields:
- 'Name' = unique ID of the list. each record with the same 'name' value will be in the same list.
- 'Domain' = you can retreive all the lists of a particular domain in once (application, page, etc.)
- 'LanguageID' = language
- 'Label' = label translated
- 'Value' = value
exemples
<SEARCH name="ContactLists">
<LIST domain="ContactsApp" languageID="fre"/>
</SEARCH>
<SEARCH name="list">
<LIST>
<INFO>
<DOMAIN operator="starts-with">/nectil/</DOMAIN>
<NAME operator="=">list2</NAME>
<VALUE operator="GT">2</VALUE>
</INFO>
</LIST>
</SEARCH>
<SEARCH name="list">
<LIST>
<INFO>
<DOMAIN operator="starts-with">/nectil/</DOMAIN>
<DOMAIN operator="ends-with">test2</DOMAIN>
</INFO>
</LIST>
</SEARCH>
<SEARCH name="list">
<LIST>
<INFO>
<DOMAIN operator="starts-with">/nectil/</DOMAIN>
<NAME operator="=">list2</NAME>
<VALUE operator="GT number">2</VALUE>
</INFO>
</LIST>
</SEARCH>