One Hat Cyber Team
Your IP :
216.73.216.182
Server IP :
203.175.9.166
Server :
Linux tanggamus.iixcp.rumahweb.net 5.14.0-427.28.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 2 03:44:10 EDT 2024 x86_64
Server Software :
LiteSpeed
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
cite5577
/
public_html
/
classes
/
submission
/
Edit File:
Submission.inc.php
<?php /** * @defgroup submission Submission * Articles, OMP's extension of the generic Submission class in lib-pkp, are * implemented here. */ /** * @file classes/submission/Submission.inc.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 Submission * @ingroup submission * @see SubmissionDAO * * @brief Article class. */ // Author display in ToC define ('AUTHOR_TOC_DEFAULT', 0); define ('AUTHOR_TOC_HIDE', 1); define ('AUTHOR_TOC_SHOW', 2); // Article access constants -- see Publication::getData('accessStatus') define('ARTICLE_ACCESS_ISSUE_DEFAULT', 0); define('ARTICLE_ACCESS_OPEN', 1); import('lib.pkp.classes.submission.PKPSubmission'); class Submission extends PKPSubmission { // // Get/set methods // /** * Get the value of a license field from the containing context. * @param $locale string Locale code * @param $field PERMISSIONS_FIELD_... * @param $publication Publication * @return string|array|null */ function _getContextLicenseFieldValue($locale, $field, $publication = null) { $context = Services::get('context')->get($this->getData('contextId')); $fieldValue = null; // Scrutinizer switch ($field) { case PERMISSIONS_FIELD_LICENSE_URL: $fieldValue = $context->getData('licenseUrl'); break; case PERMISSIONS_FIELD_COPYRIGHT_HOLDER: switch($context->getData('copyrightHolderType')) { case 'author': $fieldValue = array($context->getPrimaryLocale() => $this->getAuthorString()); break; case 'context': case null: $fieldValue = $context->getName(null); break; default: $fieldValue = $context->getData('copyrightHolderOther'); break; } break; case PERMISSIONS_FIELD_COPYRIGHT_YEAR: // Default copyright year to current year $fieldValue = date('Y'); // Override based on context settings if (!$publication) { $publication = $this->getCurrentPublication(); } if ($publication) { switch($context->getData('copyrightYearBasis')) { case 'submission': // override to the submission's year if published as you go $fieldValue = date('Y', strtotime($publication->getData('datePublished'))); break; case 'issue': if ($publication->getData('issueId')) { // override to the issue's year if published as issue-based $issueDao =& DAORegistry::getDAO('IssueDAO'); $issue = $issueDao->getBySubmissionId($this->getId()); if ($issue && $issue->getDatePublished()) { $fieldValue = date('Y', strtotime($issue->getDatePublished())); } } break; default: assert(false); } } break; default: assert(false); } // Return the fetched license field if ($locale === null) return $fieldValue; if (isset($fieldValue[$locale])) return $fieldValue[$locale]; return null; } /** * @see PKPSubmission::getBestId() * @deprecated 3.2.0.0 * @return string */ function getBestArticleId() { return parent::getBestId(); } /** * Get ID of journal. * @deprecated 3.2.0.0 * @return int */ function getJournalId() { return $this->getData('contextId'); } /** * Set ID of journal. * @deprecated 3.2.0.0 * @param $journalId int */ function setJournalId($journalId) { return $this->setData('contextId', $journalId); } /** * Get ID of article's section. * @return int */ function getSectionId() { $publication = $this->getCurrentPublication(); if (!$publication) { return 0; } return $publication->getData('sectionId'); } /** * Set ID of article's section. * @param $sectionId int */ function setSectionId($sectionId) { $publication = $this->getCurrentPublication(); if ($publication) { $publication->setData('sectionId', $sectionId); } } /** * Get the localized cover page server-side file name * @return string * @deprecated 3.2.0.0 */ function getLocalizedCoverImage() { $publication = $this->getCurrentPublication(); if (!$publication) { return ''; } $coverImage = $publication->getLocalizedData('coverImage'); return empty($coverImage['uploadName']) ? '' : $coverImage['uploadName']; } /** * get cover page server-side file name * @param $locale string * @return string * @deprecated 3.2.0.0 */ function getCoverImage($locale) { $publication = $this->getCurrentPublication(); if (!$publication) { return ''; } $coverImage = $publication->getData('coverImage', $locale); return empty($coverImage['uploadName']) ? '' : $coverImage['uploadName']; } /** * Get the localized cover page alternate text * @return string * @deprecated 3.2.0.0 */ function getLocalizedCoverImageAltText() { $publication = $this->getCurrentPublication(); if (!$publication) { return ''; } $coverImage = $publication->getLocalizedData('coverImage'); return empty($coverImage['altText']) ? '' : $coverImage['altText']; } /** * get cover page alternate text * @param $locale string * @return string * @deprecated 3.2.0.0 */ function getCoverImageAltText($locale) { $publication = $this->getCurrentPublication(); if (!$publication) { return ''; } $coverImage = $publication->getData('coverImage', $locale); return empty($coverImage['altText']) ? '' : $coverImage['altText']; } /** * Get a full URL to the localized cover image * * @return string * @deprecated 3.2.0.0 */ function getLocalizedCoverImageUrl() { $publication = $this->getCurrentPublication(); if (!$publication) { return ''; } return $publication->getLocalizedCoverImageUrl($this->getData('contextId')); } /** * Get the galleys for an article. * @return array ArticleGalley * @deprecated 3.2.0.0 */ function getGalleys() { $galleys = $this->getData('galleys'); if (is_null($galleys)) { $this->setData('galleys', Application::get()->getRepresentationDAO()->getByPublicationId($this->getCurrentPublication()->getId(), $this->getData('contextId'))->toArray()); return $this->getData('galleys'); } return $galleys; } /** * Get the localized galleys for an article. * @return array ArticleGalley * @deprecated 3.2.0.0 */ function getLocalizedGalleys() { $allGalleys = $this->getData('galleys'); $galleys = array(); foreach (array(AppLocale::getLocale(), AppLocale::getPrimaryLocale()) as $tryLocale) { foreach (array_keys($allGalleys) as $key) { if ($allGalleys[$key]->getLocale() == $tryLocale) { $galleys[] = $allGalleys[$key]; } } if (!empty($galleys)) { HookRegistry::call('ArticleGalleyDAO::getLocalizedGalleysByArticle', array(&$galleys)); return $galleys; } } return $galleys; } /** * Return option selection indicating if author should be hidden in issue ToC. * @return int AUTHOR_TOC_... * @deprecated 3.2.0.0 */ function getHideAuthor() { $publication = $this->getCurrentPublication(); if (!$publication) { return 0; } return $publication->getData('hideAuthor'); } }
Simpan