| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/Topogeo/ojs/lib/pkp/classes/metadata/openurl/ |
Upload File : |
<?php
/**
* @defgroup metadata_openurl
*/
/**
* @file classes/metadata/openurl/OpenUrlBaseSchema.inc.php
*
* Copyright (c) 2000-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @class OpenUrlBaseSchema
* @ingroup metadata_openurl
* @see MetadataSchema
*
* @brief Class that provides meta-data properties common to all
* variants of the OpenURL 1.0 standard.
*/
import('lib.pkp.classes.metadata.MetadataSchema');
class OpenUrlBaseSchema extends MetadataSchema {
/**
* Constructor
* @param $name string the meta-data schema name
*/
function OpenUrlBaseSchema($name) {
// Configure the meta-data schema.
parent::MetadataSchema(
$name,
'openurl10',
ASSOC_TYPE_CITATION
);
// Add meta-data properties common to all OpenURL standards
$this->addProperty('aulast');
$this->addProperty('aufirst');
$this->addProperty('auinit'); // First author's first and middle initials
$this->addProperty('auinit1'); // First author's first initial
$this->addProperty('auinitm'); // First author's middle initial
$this->addProperty('ausuffix'); // e.g.: "Jr", "III", etc.
$this->addProperty('au', METADATA_PROPERTY_TYPE_STRING, false, METADATA_PROPERTY_CARDINALITY_MANY);
$this->addProperty('title'); // Deprecated in book/journal 1.0, prefer jtitle/btitle, ok for dissertation
$this->addProperty('date', METADATA_PROPERTY_TYPE_DATE); // Publication date
$this->addProperty('isbn');
}
}
?>