Search code examples
joomlajoomla-extensionsjoomla-module

What are possible fields' filters in Joomla module parameters?


I am looking for possible filters' list when adding parameters' field for a module settings.

I know that filter="raw" and filter="integer" exists from examples at Text form field type.

But what are other possible filters for these fields?


Solution

  • I am not totally sure if this is it, but may want to see this list directly from the code, with the method clean().

    So the list would be:

    • INT / INTEGER
    • UINT
    • FLOAT / DOUBLE
    • BOOL / BOOLEAN
    • WORD
    • ALNUM
    • CMD
    • BASE64
    • STRING
    • HTML
    • ARRAY
    • PATH
    • USERNAME
    • RAW

    Let me know if this helps.