first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-06-08 17:09:23 -04:00
commit df3a033196
17887 changed files with 8637778 additions and 0 deletions
@@ -0,0 +1,39 @@
<?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;
}
}