[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
ojs
/
248
/
lib
/
pkp
/
classes
/
announcement
/
[
Home
]
File: PKPAnnouncement.inc.php
<?php /** * @defgroup announcement */ /** * @file classes/announcement/PKPAnnouncement.inc.php * * Copyright (c) 2013-2019 Simon Fraser University * Copyright (c) 2000-2019 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * @class PKPAnnouncement * @ingroup announcement * @see AnnouncementDAO, PKPAnnouncementDAO * * @brief Basic class describing a announcement. */ define('ANNOUNCEMENT_EXPIRE_YEAR_OFFSET_FUTURE', '+10'); class PKPAnnouncement extends DataObject { /** * Constructor */ function PKPAnnouncement() { parent::DataObject(); } // // Get/set methods // /** * Get the ID of the announcement. * @return int */ function getAnnouncementId() { if (Config::getVar('debug', 'deprecation_warnings')) trigger_error('Deprecated function.'); return $this->getId(); } /** * Set the ID of the announcement. * @param $announcementId int */ function setAnnouncementId($announcementId) { if (Config::getVar('debug', 'deprecation_warnings')) trigger_error('Deprecated function.'); return $this->setId($announcementId); } /** * Get assoc ID for this annoucement. * @return int */ function getAssocId() { return $this->getData('assocId'); } /** * Set assoc ID for this annoucement. * @param $assocId int */ function setAssocId($assocId) { return $this->setData('assocId', $assocId); } /** * Get assoc type for this annoucement. * @return int */ function getAssocType() { return $this->getData('assocType'); } /** * Set assoc type for this annoucement. * @param $assocType int */ function setAssocType($assocType) { return $this->setData('assocType', $assocType); } /** * Get the announcement type of the announcement. * @return int */ function getTypeId() { return $this->getData('typeId'); } /** * Set the announcement type of the announcement. * @param $typeId int */ function setTypeId($typeId) { return $this->setData('typeId', $typeId); } /** * Get the announcement type name of the announcement. * @return string */ function getAnnouncementTypeName() { $announcementTypeDao =& DAORegistry::getDAO('AnnouncementTypeDAO'); return $announcementTypeDao->getAnnouncementTypeName($this->getData('typeId')); } /** * Get localized announcement title * @return string */ function getLocalizedTitle() { return $this->getLocalizedData('title'); } function getAnnouncementTitle() { if (Config::getVar('debug', 'deprecation_warnings')) trigger_error('Deprecated function.'); return $this->getLocalizedTitle(); } /** * Get full localized announcement title including type name * @return string */ function getLocalizedTitleFull() { $typeName = $this->getAnnouncementTypeName(); $title = $this->getAnnouncementTitle(); if (!empty($typeName)) { return $typeName . ': ' . $title; } else { return $title; } } function getAnnouncementTitleFull() { if (Config::getVar('debug', 'deprecation_warnings')) trigger_error('Deprecated function.'); return $this->getLocalizedTitleFull(); } /** * Get announcement title. * @param $locale * @return string */ function getTitle($locale) { return $this->getData('title', $locale); } /** * Set announcement title. * @param $title string * @param $locale string */ function setTitle($title, $locale) { return $this->setData('title', $title, $locale); } /** * Get localized short description * @return string */ function getLocalizedDescriptionShort() { return $this->getLocalizedData('descriptionShort'); } function getAnnouncementDescriptionShort() { if (Config::getVar('debug', 'deprecation_warnings')) trigger_error('Deprecated function.'); return $this->getLocalizedDescriptionShort(); } /** * Get announcement brief description. * @param $locale string * @return string */ function getDescriptionShort($locale) { return $this->getData('descriptionShort', $locale); } /** * Set announcement brief description. * @param $descriptionShort string * @param $locale string */ function setDescriptionShort($descriptionShort, $locale) { return $this->setData('descriptionShort', $descriptionShort, $locale); } /** * Get localized full description * @return string */ function getLocalizedDescription() { return $this->getLocalizedData('description'); } function getAnnouncementDescription() { if (Config::getVar('debug', 'deprecation_warnings')) trigger_error('Deprecated function.'); return $this->getLocalizedDescription(); } /** * Get announcement description. * @param $locale string * @return string */ function getDescription($locale) { return $this->getData('description', $locale); } /** * Set announcement description. * @param $description string * @param $locale string */ function setDescription($description, $locale) { return $this->setData('description', $description, $locale); } /** * Get announcement expiration date. * @return date (YYYY-MM-DD) */ function getDateExpire() { return $this->getData('dateExpire'); } /** * Set announcement expiration date. * @param $dateExpire date (YYYY-MM-DD) */ function setDateExpire($dateExpire) { return $this->setData('dateExpire', $dateExpire); } /** * Get announcement posted date. * @return date (YYYY-MM-DD) */ function getDatePosted() { return date('Y-m-d', strtotime($this->getData('datePosted'))); } /** * Get announcement posted datetime. * @return datetime (YYYY-MM-DD HH:MM:SS) */ function getDatetimePosted() { return $this->getData('datePosted'); } /** * Set announcement posted date. * @param $datePosted date (YYYY-MM-DD) */ function setDatePosted($datePosted) { return $this->setData('datePosted', $datePosted); } /** * Set announcement posted datetime. * @param $datetimePosted date (YYYY-MM-DD HH:MM:SS) */ function setDatetimePosted($datetimePosted) { return $this->setData('datePosted', $datetimePosted); } } ?>