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
/
www
/
lib
/
pkp
/
classes
/
submission
/
View File Name :
SubmissionComment.inc.php
<?php /** * @file classes/submission/SubmissionComment.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 SubmissionComment * @ingroup submission * @see SubmissionCommentDAO * * @brief Class for SubmissionComment. */ /** Comment associative types. All types must be defined here. */ define('COMMENT_TYPE_PEER_REVIEW', 0x01); define('COMMENT_TYPE_EDITOR_DECISION', 0x02); define('COMMENT_TYPE_COPYEDIT', 0x03); define('COMMENT_TYPE_LAYOUT', 0x04); define('COMMENT_TYPE_PROOFREAD', 0x05); class SubmissionComment extends DataObject { /** * get comment type * @return int COMMENT_TYPE_... */ function getCommentType() { return $this->getData('commentType'); } /** * set comment type * @param $commentType int COMMENT_TYPE_... */ function setCommentType($commentType) { $this->setData('commentType', $commentType); } /** * get role id * @return int */ function getRoleId() { return $this->getData('roleId'); } /** * set role id * @param $roleId int */ function setRoleId($roleId) { $this->setData('roleId', $roleId); } /** * get submission id * @return int */ function getSubmissionId() { return $this->getData('submissionId'); } /** * set submission id * @param $submissionId int */ function setSubmissionId($submissionId) { $this->setData('submissionId', $submissionId); } /** * get assoc id * @return int */ function getAssocId() { return $this->getData('assocId'); } /** * set assoc id * @param $assocId int */ function setAssocId($assocId) { $this->setData('assocId', $assocId); } /** * get author id * @return int */ function getAuthorId() { return $this->getData('authorId'); } /** * set author id * @param $authorId int */ function setAuthorId($authorId) { $this->setData('authorId', $authorId); } /** * get author name * @return string */ function getAuthorName() { // Reference used to set if not already fetched $authorFullName =& $this->getData('authorFullName'); if(!isset($authorFullName)) { $userDao = DAORegistry::getDAO('UserDAO'); /* @var $userDao UserDAO */ $authorFullName = $userDao->getUserFullName($this->getAuthorId(), true); } return $authorFullName ? $authorFullName : ''; } /** * get author email * @return string */ function getAuthorEmail() { // Reference used to set if not already fetched $authorEmail =& $this->getData('authorEmail'); if(!isset($authorEmail)) { $userDao = DAORegistry::getDAO('UserDAO'); /* @var $userDao UserDAO */ $authorEmail = $userDao->getUserEmail($this->getAuthorId(), true); } return $authorEmail ? $authorEmail : ''; } /** * get comment title * @return string */ function getCommentTitle() { return $this->getData('commentTitle'); } /** * set comment title * @param $commentTitle string */ function setCommentTitle($commentTitle) { $this->setData('commentTitle', $commentTitle); } /** * get comments * @return string */ function getComments() { return $this->getData('comments'); } /** * set comments * @param $comments string */ function setComments($comments) { $this->setData('comments', $comments); } /** * get date posted * @return date */ function getDatePosted() { return $this->getData('datePosted'); } /** * set date posted * @param $datePosted date */ function setDatePosted($datePosted) { $this->setData('datePosted', $datePosted); } /** * get date modified * @return date */ function getDateModified() { return $this->getData('dateModified'); } /** * set date modified * @param $dateModified date */ function setDateModified($dateModified) { $this->setData('dateModified', $dateModified); } /** * get viewable * @return boolean */ function getViewable() { return $this->getData('viewable'); } /** * set viewable * @param $viewable boolean */ function setViewable($viewable) { $this->setData('viewable', $viewable); } }