Plugins formulierveld type

From Joomla! Documentation

This page is a translated version of the page Plugins form field type and the translation is 100% complete.
Other languages:
English • ‎Nederlands • ‎español • ‎français

Biedt een drop-down lijst met plugin-opties uit de map.

  • name (verplicht) is de unieke naam van de parameter.
  • type (verplicht) moet plugins zijn.
  • folder (verplicht) moet editor of captcha zijn.
  • label (verplicht) (vertaalbaar) is de beschrijvende titel van het veld.
  • description beschrijvende tekst voor het formulierveld.

Voorbeeld XML definitie:

<field name="editor" type="plugins" folder="editors"
	description="COM_USERS_USER_FIELD_EDITOR_DESC"
	label="COM_USERS_USER_FIELD_EDITOR_LABEL" >
	<option value="">JOPTION_USE_DEFAULT</option>
</field>
<field name="captcha" type="plugins" folder="captcha"
	label="COM_CONTACT_FIELD_CAPTCHA_LABEL"
	description="COM_CONTACT_FIELD_CAPTCHA_DESC"
	default="" 
	filter="cmd" >
	<option value="">JOPTION_USE_DEFAULT</option>
	<option value="0">JOPTION_DO_NOT_USE</option>
</field>