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?

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top