| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/Topogeo/ojs/classes/manager/form/setup/ |
Upload File : |
<?php
/**
* @defgroup manager_form_setup
*/
/**
* @file classes/manager/form/setup/JournalSetupForm.inc.php
*
* Copyright (c) 2003-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @class JournalSetupForm
* @ingroup manager_form_setup
*
* @brief Base class for journal setup forms.
*/
// $Id$
import('classes.manager.form.setup.JournalSetupForm');
import('lib.pkp.classes.form.Form');
class JournalSetupForm extends Form {
var $step;
var $settings;
/**
* Constructor.
* @param $step the step number
* @param $settings an associative array with the setting names as keys and associated types as values
*/
function JournalSetupForm($step, $settings) {
parent::Form(sprintf('manager/setup/step%d.tpl', $step));
$this->addCheck(new FormValidatorPost($this));
$this->step = $step;
$this->settings = $settings;
}
/**
* Display the form.
*/
function display($request, $dispatcher) {
$templateMgr =& TemplateManager::getManager();
$templateMgr->assign('setupStep', $this->step);
$templateMgr->assign('helpTopicId', 'journal.managementPages.setup');
$templateMgr->setCacheability(CACHEABILITY_MUST_REVALIDATE);
parent::display();
}
/**
* Initialize data from current settings.
*/
function initData() {
$journal =& Request::getJournal();
$this->_data = $journal->getSettings();
}
/**
* Read user input.
*/
function readInputData() {
$this->readUserVars(array_keys($this->settings));
}
/**
* Save modified settings.
*/
function execute() {
$journal =& Request::getJournal();
$settingsDao =& DAORegistry::getDAO('JournalSettingsDAO');
foreach ($this->_data as $name => $value) {
if (isset($this->settings[$name])) {
$isLocalized = in_array($name, $this->getLocaleFieldNames());
$settingsDao->updateSetting(
$journal->getId(),
$name,
$value,
$this->settings[$name],
$isLocalized
);
}
}
}
}
?>