%PDF-1.7 GIF89;
| Server IP : 104.20.45.2 / Your IP : 172.16.20.3 Web Server : Apache/2.4.25 (Debian) System : Linux f64a392e70de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : application ( 1000) PHP Version : 5.6.40 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /app/plugins/generic/staticPages/ |
Upload File : |
<?php
/**
* @file plugins/generic/staticPages/StaticPagesSettingsForm.inc.php
*
* Copyright (c) 2013-2019 Simon Fraser University
* Copyright (c) 2003-2019 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @package plugins.generic.staticPages
* @class StaticPagesSettingsForm
*
* Form for journal managers to modify Static Page content and title
*
*/
import('lib.pkp.classes.form.Form');
class StaticPagesSettingsForm extends Form {
/** @var $journalId int */
var $journalId;
/** @var $plugin object */
var $plugin;
/** $var $errors string */
var $errors;
/**
* Constructor
* @param $journalId int
*/
function StaticPagesSettingsForm(&$plugin, $journalId) {
parent::Form($plugin->getTemplatePath() . 'settingsForm.tpl');
$this->journalId = $journalId;
$this->plugin =& $plugin;
$this->addCheck(new FormValidatorPost($this));
}
/**
* Initialize form data from current group group.
*/
function initData() {
$journalId = $this->journalId;
$plugin =& $this->plugin;
$staticPagesDao =& DAORegistry::getDAO('StaticPagesDAO');
$rangeInfo =& Handler::getRangeInfo('staticPages');
$staticPages = $staticPagesDao->getStaticPagesByJournalId($journalId);
$this->setData('staticPages', $staticPages);
}
/**
* Assign form data to user-submitted data.
*/
function readInputData() {
$this->readUserVars(array('pages'));
}
/**
* Save settings/changes
*/
function execute() {
$plugin =& $this->plugin;
$journalId = $this->journalId;
}
}
?>