Server IP : 1.179.227.78 / Your IP : 10.104.4.41 Web Server : Apache System : Linux afdc-mdu34 5.4.0-153-generic #170-Ubuntu SMP Fri Jun 16 13:43:31 UTC 2023 x86_64 User : www ( 1001) PHP Version : 7.4.30 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/afdc-mdu34.rtarf.mi.th/joomla/components/com_mailto/models/ |
Upload File : |
<?php /** * @package Joomla.Site * @subpackage com_users * * @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * Mailto model class. * * @since 3.8.9 */ class MailtoModelMailto extends JModelForm { /** * Method to get the mailto form. * * The base form is loaded from XML and then an event is fired * for users plugins to extend the form with extra fields. * * @param array $data An optional array of data for the form to interrogate. * @param boolean $loadData True if the form is to load its own data (default case), false if not. * * @return JForm A JForm object on success, false on failure * * @since 3.8.9 */ public function getForm($data = array(), $loadData = true) { // Get the form. $form = $this->loadForm('com_mailto.mailto', 'mailto', array('load_data' => $loadData)); if (empty($form)) { return false; } return $form; } /** * Method to get the data that should be injected in the form. * * @return array The default data is an empty array. * * @since 3.8.9 */ protected function loadFormData() { $user = JFactory::getUser(); $app = JFactory::getApplication(); $data = $app->getUserState('mailto.mailto.form.data', array()); $data['link'] = urldecode($app->input->get('link', '', 'BASE64')); if ($data['link'] == '') { JError::raiseError(403, JText::_('COM_MAILTO_LINK_IS_MISSING')); return false; } // Load with previous data, if it exists $data['sender'] = $app->input->post->getString('sender', ''); $data['subject'] = $app->input->post->getString('subject', ''); $data['emailfrom'] = JStringPunycode::emailToPunycode($app->input->post->getString('emailfrom', '')); $data['emailto'] = JStringPunycode::emailToPunycode($app->input->post->getString('emailto', '')); if (!$user->guest) { $data['sender'] = $user->name; $data['emailfrom'] = $user->email; } $app->setUserState('mailto.mailto.form.data', $data); $this->preprocessData('com_mailto.mailto', $data); return $data; } /** * Get the request data * * @return array The requested data * * @since 3.8.9 */ public function getData() { $input = JFactory::getApplication()->input; $data['emailto'] = $input->get('emailto', '', 'string'); $data['sender'] = $input->get('sender', '', 'string'); $data['emailfrom'] = $input->get('emailfrom', '', 'string'); $data['subject'] = $input->get('subject', '', 'string'); $data['consentbox'] = $input->get('consentbox', '', 'string'); return $data; } }