Open Journal Systems  3.3.0
FieldUrn.inc.php
1 <?php
15 
17 
18 class FieldUrn extends FieldText {
20  public $component = 'field-urn';
21 
23  public $urnPrefix = '';
24 
28  public function getConfig() {
29  $config = parent::getConfig();
30  $config['urnPrefix'] = $this->urnPrefix;
31  $config['addCheckNumberLabel'] = __('plugins.pubIds.urn.editor.addCheckNo');
32 
33  return $config;
34  }
35 }
PKP\components\forms\FieldText
Definition: FieldText.inc.php:15
Plugins\Generic\URN\FieldUrn
Definition: FieldUrn.inc.php:18
Plugins\Generic\URN\FieldUrn\getConfig
getConfig()
Definition: FieldUrn.inc.php:31
Plugins\Generic\URN
Definition: FieldUrn.inc.php:14
Plugins\Generic\URN\FieldUrn\$urnPrefix
$urnPrefix
Definition: FieldUrn.inc.php:26
Plugins\Generic\URN\FieldUrn\$component
$component
Definition: FieldUrn.inc.php:20