| 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 : /inetpub/wwwroot/Topogeo/ojs/classes/article/ |
Upload File : |
<?php
/**
* @file classes/article/ArticleGalley.inc.php
*
* Copyright (c) 2003-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @class ArticleGalley
* @ingroup article
* @see ArticleGalleyDAO
*
* @brief A galley is a final presentation version of the full-text of an article.
*/
// $Id$
import('classes.article.ArticleFile');
class ArticleGalley extends ArticleFile {
/**
* Constructor.
*/
function ArticleGalley() {
parent::DataObject();
}
/**
* Check if galley is an HTML galley.
* @return boolean
*/
function isHTMLGalley() {
return false;
}
/**
* Check if galley is a PDF galley.
* @return boolean
*/
function isPdfGalley() {
switch ($this->getFileType()) {
case 'application/pdf':
case 'application/x-pdf':
case 'text/pdf':
case 'text/x-pdf':
return true;
default: return false;
}
}
/**
* Check if the specified file is a dependent file.
* @param $fileId int
* @return boolean
*/
function isDependentFile($fileId) {
return false;
}
//
// Get/set methods
//
/**
* Get ID of galley.
* @return int
*/
function getGalleyId() {
if (Config::getVar('debug', 'deprecation_warnings')) trigger_error('Deprecated function.');
return $this->getId();
}
/**
* Set ID of galley.
* @param $galleyId int
*/
function setGalleyId($galleyId) {
if (Config::getVar('debug', 'deprecation_warnings')) trigger_error('Deprecated function.');
return $this->setId($galleyId);
}
/**
* Get views count.
* @return int
*/
function getViews() {
return $this->getData('views');
}
/**
* Set views count.
* NOTE that the views count is NOT stored by the DAO update or insert functions.
* @param $views int
*/
function setViews($views) {
return $this->setData('views', $views);
}
/**
* Get the localized value of the galley label.
* @return $string
*/
function getGalleyLabel() {
$label = $this->getLabel();
if ($this->getLocale() != AppLocale::getLocale()) {
$locales = AppLocale::getAllLocales();
$label .= ' (' . $locales[$this->getLocale()] . ')';
}
return $label;
}
/**
* Get label/title.
* @return string
*/
function getLabel() {
return $this->getData('label');
}
/**
* Set label/title.
* @param $label string
*/
function setLabel($label) {
return $this->setData('label', $label);
}
/**
* Get locale.
* @return string
*/
function getLocale() {
return $this->getData('locale');
}
/**
* Set locale.
* @param $locale string
*/
function setLocale($locale) {
return $this->setData('locale', $locale);
}
/**
* Get sequence order of supplementary file.
* @return float
*/
function getSequence() {
return $this->getData('sequence');
}
/**
* Set sequence order of supplementary file.
* @param $sequence float
*/
function setSequence($sequence) {
return $this->setData('sequence', $sequence);
}
/**
* Get public galley id
* @return string
*/
function getPublicGalleyId() {
// Ensure that blanks are treated as nulls.
$returner = $this->getData('publicGalleyId');
if ($returner === '') return null;
return $returner;
}
/**
* Set public galley id
* @param $publicGalleyId string
*/
function setPublicGalleyId($publicGalleyId) {
return $this->setData('publicGalleyId', $publicGalleyId);
}
/**
* Return the "best" article ID -- If a public article ID is set,
* use it; otherwise use the internal article Id. (Checks the journal
* settings to ensure that the public ID feature is enabled.)
* @param $journal Object the journal this galley is in
* @return string
*/
function getBestGalleyId(&$journal) {
if ($journal->getSetting('enablePublicGalleyId')) {
$publicGalleyId = $this->getPublicGalleyId();
if (!empty($publicGalleyId)) return $publicGalleyId;
}
return $this->getId();
}
}
?>