[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
jurnal-kesmas
/
v1
/
plugins
/
pubIds
/
urn
/
classes
/
form
/
[
Home
]
File: FieldTextUrn.php
<?php /** * @file plugins/pubIds/urn/classes/form/FieldTextUrn.php * * Copyright (c) 2014-2022 Simon Fraser University * Copyright (c) 2000-2022 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @class FieldTextUrn * * @brief A field for entering a custom URN that also considers adding a check number. */ namespace APP\plugins\pubIds\urn\classes\form; use PKP\components\forms\FieldText; class FieldTextUrn extends FieldText { /** @copydoc Field::$component */ public $component = 'field-text-urn'; public string $urnPrefix = ''; public bool $applyCheckNumber = false; /** * @copydoc Field::getConfig() */ public function getConfig() { $config = parent::getConfig(); $config['urnPrefix'] = $this->urnPrefix; $config['applyCheckNumber'] = $this->applyCheckNumber; $config['addCheckNumberLabel'] = __('plugins.pubIds.urn.editor.addCheckNo'); return $config; } }