| Server IP : 195.134.90.114 / Your IP : 216.73.216.86 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/classes/components/forms/context/ |
Upload File : |
<?php
/**
* @file classes/components/form/context/PKPNotifyUsersForm.inc.php
*
* Copyright (c) 2014-2021 Simon Fraser University
* Copyright (c) 2000-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class PKPNotifyUsersForm
* @ingroup classes_controllers_form
*
* @brief A preset form for sending an email notification to users.
*/
namespace PKP\components\forms\context;
use DAORegistry;
use \PKP\components\forms\FormComponent;
use \PKP\components\forms\FieldOptions;
use \PKP\components\forms\FieldRichTextarea;
use \PKP\components\forms\FieldText;
use \Services;
define('FORM_NOTIFY_USERS', 'notifyUsers');
class PKPNotifyUsersForm extends FormComponent {
public const FORM_NOTIFY_USERS = 'notifyUsers';
/** @copydoc FormComponent::$id */
public $id = self::FORM_NOTIFY_USERS;
/** @copydoc FormComponent::$method */
public $method = 'POST';
/** @var array count of users in each group */
public $userGroupCounts = [];
/**
* Constructor
*
* @param string $action URL to submit the form to
* @param Context $context Journal, press or preprint server
*/
public function __construct($action, $context) {
$this->action = $action;
/** @var \PKP\security\UserGroupDAO */
$userGroupDao = DAORegistry::getDAO('UserGroupDAO');
$userGroups = $userGroupDao->getByContextId($context->getId());
$userCountByGroupId = $userGroupDao->getUserCountByContextId($context->getId());
$userGroupOptions = [];
while ($userGroup = $userGroups->next()) {
if (in_array($userGroup->getId(), (array) $context->getData('disableBulkEmailUserGroups'))) {
continue;
}
$userGroupOptions[] = [
'value' => $userGroup->getId(),
'label' => $userGroup->getLocalizedData('name'),
];
$this->userGroupCounts[$userGroup->getId()] = $userCountByGroupId->get($userGroup->getId(), 0);
}
$currentUser = \Application::get()->getRequest()->getUser();
$this->addField(new FieldOptions('userGroupIds', [
'label' => __('user.roles'),
'description' => __('manager.setup.notifyUsers.description'),
'value' => [],
'options' => $userGroupOptions,
'required' => true,
]))
->addField(new FieldText('subject', [
'label' => __('email.subject'),
'value' => '',
'required' => true,
]))
->addField(new FieldRichTextarea('body', [
'label' => __('email.email'),
'size' => 'large',
'value' => '',
'required' => true,
]))
->addField(new FieldOptions('copy', [
'label' => __('common.copy'),
'value' => 0,
'options' => [
[
'value' => 1,
'label' => __('manager.setup.notifyUsers.copyDetails', ['email' => $currentUser->getEmail()]),
],
]
]));
}
/**
* @copydoc FormComponent::getConfig()
*/
public function getConfig() {
$config = parent::getConfig();
$config['confirmLabel'] = __('manager.setup.notifyUsers.confirm');
$config['sendLabel'] = __('manager.setup.notifyUsers.send');
$config['userGroupCounts'] = $this->userGroupCounts;
return $config;
}
}