[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
jurnal-kesmas
/
baru
/
classes
/
components
/
forms
/
context
/
[
Home
]
File: ContextForm.php
<?php /** * @file classes/components/form/context/ContextForm.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 ContextForm * * @ingroup classes_controllers_form * * @brief Add OJS-specific fields to the context add/edit form. */ namespace APP\components\forms\context; use PKP\components\forms\context\PKPContextForm; use PKP\components\forms\FieldOptions; use PKP\components\forms\FieldText; class ContextForm extends PKPContextForm { /** * @copydoc PKPContextForm::__construct() */ public function __construct($action, $locales, $baseUrl, $context) { parent::__construct($action, $locales, $baseUrl, $context); $this->addField(new FieldText('abbreviation', [ 'label' => __('manager.setup.journalAbbreviation'), 'isMultilingual' => true, 'value' => $context ? $context->getData('abbreviation') : null, ]), [FIELD_POSITION_AFTER, 'acronym']) ->addField(new FieldOptions('enabled', [ 'label' => __('common.enable'), 'options' => [ ['value' => true, 'label' => __('admin.journals.enableJournalInstructions')], ], 'value' => $context ? (bool) $context->getData('enabled') : false, ])); } }