| 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:/Old Sites/Libteiser - Ojs/ojs/classes/article/ |
Upload File : |
<?php
/**
* @file classes/article/ArticleNote.inc.php
*
* Copyright (c) 2003-2008 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @class ArticleNote
* @ingroup article
* @see ArticleNoteDAO
*
* @brief Class for ArticleNote.
*/
// $Id: ArticleNote.inc.php,v 1.10 2008/07/01 01:16:09 asmecher Exp $
import('article.ArticleFile');
class ArticleNote extends ArticleFile {
/**
* Constructor.
*/
function ArticleNote() {
parent::DataObject();
}
/**
* get article note id
* @return int
*/
function getNoteId() {
return $this->getData('noteId');
}
/**
* set article note id
* @param $noteId int
*/
function setNoteId($noteId) {
return $this->setData('noteId',$noteId);
}
/**
* get article id
* @return int
*/
function getArticleId() {
return $this->getData('articleId');
}
/**
* set article id
* @param $articleId int
*/
function setArticleId($articleId) {
return $this->setData('articleId',$articleId);
}
/**
* get user id
* @return int
*/
function getUserId() {
return $this->getData('userId');
}
/**
* set user id
* @param $userId int
*/
function setUserId($userId) {
return $this->setData('userId',$userId);
}
/**
* get date created
* @return date
*/
function getDateCreated() {
return $this->getData('dateCreated');
}
/**
* set date created
* @param $dateCreated date
*/
function setDateCreated($dateCreated) {
return $this->setData('dateCreated',$dateCreated);
}
/**
* get date modified
* @return date
*/
function getDateModified() {
return $this->getData('dateModified');
}
/**
* set date modified
* @param $dateModified date
*/
function setDateModified($dateModified) {
return $this->setData('dateModified',$dateModified);
}
/**
* get title
* @return string
*/
function getTitle() {
return $this->getData('title');
}
/**
* set title
* @param $title string
*/
function setTitle($title) {
return $this->setData('title',$title);
}
/**
* get note
* @return string
*/
function getNote() {
return $this->getData('note');
}
/**
* set note
* @param $note string
*/
function setNote($note) {
return $this->setData('note',$note);
}
/**
* get file id
* @return int
*/
function getFileId() {
return $this->getData('fileId');
}
/**
* set file id
* @param $fileId int
*/
function setFileId($fileId) {
return $this->setData('fileId',$fileId);
}
}
?>