0

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?

Philip Scheer
  • 241
  • 1
  • 2
  • 12

1 Answers1

2

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

Rakesh Sharma
  • 13,680
  • 5
  • 37
  • 44