Question

i have a problem with my joomla module i want to access the value of this field:

            <field name="email" type="email"
                    label="JGLOBAL_EMAIL"
                    description="COM_ADMIN_USER_FIELD_EMAIL_DESC"
                    required="true"
                    size="30"
                    class="inputbox"
                    validate="email" />

from my php file. I only saw on the internet big functions for that but does it goes simpler?

Était-ce utile?

La solution

$params->get('email') in your module may be type="text" in your field

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top