| Server IP : 89.117.53.150 / Your IP : 216.73.216.11 Web Server : Apache System : Linux server2.hostofiraq.site 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64 User : iscmbt-kufa-atu ( 1014) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/iscmbt-kufa-atu/quarantine/ |
Upload File : |
<?php
/**
* @file lib/pkp/classes/plugins/OAIMetadataFormatPlugin.php
*
* Copyright (c) 2014-2021 Simon Fraser University
* Copyright (c) 2003-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class OAIMetadataFormatPlugin
*
* @ingroup plugins
*
* @brief Abstract class for OAI Metadata format plugins
*/
namespace PKP\plugins;
abstract class OAIMetadataFormatPlugin extends Plugin
{
/**
* @copydoc Plugin::register()
*
* @param null|mixed $mainContextId
*/
public function register($category, $path, $mainContextId = null)
{
if (!parent::register($category, $path, $mainContextId)) {
return false;
}
$this->addLocaleData();
if ($this->getEnabled()) {
Hook::add('OAI::metadataFormats', [$this, 'callback_formatRequest']);
}
return true;
}
/**
* Get the metadata prefix for this plugin's format.
*/
public static function getMetadataPrefix()
{
assert(false); // Should always be overridden
}
public static function getSchema()
{
return '';
}
public static function getNamespace()
{
return '';
}
/**
* Get a hold of the class that does the formatting.
*/
abstract public function getFormatClass();
public function callback_formatRequest($hookName, $args)
{
$namesOnly = $args[0];
$identifier = $args[1];
$formats = & $args[2];
if ($namesOnly) {
$formats = array_merge($formats, [$this->getMetadataPrefix()]);
} else {
$formatClass = $this->getFormatClass();
$formats = array_merge(
$formats,
[$this->getMetadataPrefix() => new $formatClass($this->getMetadataPrefix(), $this->getSchema(), $this->getNamespace())]
);
}
return false;
}
}
if (!PKP_STRICT_MODE) {
class_alias('\PKP\plugins\OAIMetadataFormatPlugin', '\OAIMetadataFormatPlugin');
}