Skip to content
Julien Vonthron edited this page Dec 11, 2013 · 4 revisions

RPublished

Description

Field to show a select list of statuses. It uses the default Joomla! statuses values:

  • 1 => Published
  • 0 => Unpublished
  • 2 => Archived
  • -2 => Trashed
  • '*' => All

You can customise which status show/enable with the attribute statuses.

Sample code

This field will show a list of ISO 4217 currencies (value is the ISO 3 letters code)

<field 
   name="currency" 
   type="rcurrency"
   label="COM_XXX_FIELD_CURRENCY"
   description="COM_XXX_FIELD_CURRENCY_DESC"
   class="chosen"
>
   <option value="">JOPTION_SELECT_CURRENCY</option>
</field>

Clone this wiki locally