<?php
/**
* @file classes/form/validation/FormValidatorPost.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 FormValidatorPost
*
* @ingroup form_validation
*
* @brief Form validation check to make sure the form is POSTed.
*/
namespace PKP\form\validation;
use APP\core\Application;
class FormValidatorPost extends FormValidator
{
/**
* Constructor.
*
* @param \PKP\form\Form $form
* @param string $message the locale key to use (optional)
*/
public function __construct(&$form, $message = 'form.postRequired')
{
parent::__construct($form, 'dummy', FormValidator::FORM_VALIDATOR_REQUIRED_VALUE, $message);
}
//
// Public methods
//
/**
* Check if form was posted.
* overrides FormValidator::isValid()
*
* @return bool
*/
public function isValid()
{
$request = Application::get()->getRequest();
return $request->isPost();
}
}
if (!PKP_STRICT_MODE) {
class_alias('\PKP\form\validation\FormValidatorPost', '\FormValidatorPost');
}
|