00001 <?php
00002
00016
00017 import('controllers.tab.settings.form.PressSettingsForm');
00018
00019 class SiteAccessOptionsForm extends PressSettingsForm {
00020
00024 function SiteAccessOptionsForm($wizardMode = false) {
00025 $settings = array(
00026 'disableUserReg' => 'bool',
00027 'allowRegAuthor' => 'bool',
00028 'allowRegReviewer' => 'bool',
00029 'restrictSiteAccess' => 'bool',
00030 'restrictMonographAccess' => 'bool',
00031 'showGalleyLinks' => 'bool'
00032 );
00033
00034 parent::PressSettingsForm($settings, 'controllers/tab/settings/siteAccessOptions/form/siteAccessOptionsForm.tpl', $wizardMode);
00035 }
00036
00037 }
00038
00039 ?>