| Server IP : 195.134.90.114 / Your IP : 216.73.216.223 Web Server : Apache/2.4.58 System : Linux nepub 6.8.0-88-generic #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/public_html/lib/pkp/controllers/grid/settings/user/form/ |
Upload File : |
<?php
/**
* @file controllers/grid/settings/user/form/UserEmailForm.inc.php
*
* Copyright (c) 2014-2021 Simon Fraser University
* Copyright (c) 2003-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class UserEmailForm
* @ingroup controllers_grid_settings_user_form
*
* @brief Form for sending an email to a user
*/
import('lib.pkp.classes.form.Form');
class UserEmailForm extends Form {
/* @var the user id of user to send email to */
var $userId;
/**
* Constructor.
* @param $userId int User ID to contact.
*/
function __construct($userId) {
parent::__construct('controllers/grid/settings/user/form/userEmailForm.tpl');
$this->userId = (int) $userId;
$this->addCheck(new FormValidator($this, 'subject', 'required', 'email.subjectRequired'));
$this->addCheck(new FormValidator($this, 'message', 'required', 'email.bodyRequired'));
$this->addCheck(new FormValidatorPost($this));
$this->addCheck(new FormValidatorCSRF($this));
}
/**
* Assign form data to user-submitted data.
* @see Form::readInputData()
*/
function readInputData() {
$this->readUserVars(array(
'subject',
'message',
));
}
/**
* @copydoc Form::Fetch
*/
function fetch($request, $template = null, $display = false) {
$userDao = DAORegistry::getDAO('UserDAO'); /* @var $userDao UserDAO */
$user = $userDao->getById($this->userId);
$templateMgr = TemplateManager::getManager($request);
$templateMgr->assign(array(
'userId' => $this->userId,
'userFullName' => $user->getFullName(),
'userEmail' => $user->getEmail(),
));
return parent::fetch($request, $template, $display);
}
/**
* Send the email
* @copydoc Form::execute()
*/
function execute(...$functionArgs) {
$userDao = DAORegistry::getDAO('UserDAO'); /* @var $userDao UserDAO */
$toUser = $userDao->getById($this->userId);
$request = Application::get()->getRequest();
$fromUser = $request->getUser();
import('lib.pkp.classes.mail.MailTemplate');
$email = new MailTemplate();
$email->addRecipient($toUser->getEmail(), $toUser->getFullName());
$email->setReplyTo($fromUser->getEmail(), $fromUser->getFullName());
$email->setSubject($this->getData('subject'));
$email->setBody($this->getData('message'));
$email->assignParams();
parent::execute(...$functionArgs);
if (!$email->send()) {
import('classes.notification.NotificationManager');
$notificationMgr = new NotificationManager();
$notificationMgr->createTrivialNotification($request->getUser()->getId(), NOTIFICATION_TYPE_ERROR, array('contents' => __('email.compose.error')));
}
}
}