getData('userId'); } /** * set user id of the note's author * * @param int $userId */ public function setUserId($userId) { $this->setData('userId', $userId); } /** * Return the user of the note's author. * * @return \PKP\user\User */ public function getUser() { return Repo::user()->get($this->getUserId(), true); } /** * get date note was created * * @return string (YYYY-MM-DD HH:MM:SS) */ public function getDateCreated() { return $this->getData('dateCreated'); } /** * set date note was created * * @param string $dateCreated (YYYY-MM-DD HH:MM:SS) */ public function setDateCreated($dateCreated) { $this->setData('dateCreated', $dateCreated); } /** * get date note was modified * * @return string (YYYY-MM-DD HH:MM:SS) */ public function getDateModified() { return $this->getData('dateModified'); } /** * set date note was modified * * @param string $dateModified (YYYY-MM-DD HH:MM:SS) */ public function setDateModified($dateModified) { $this->setData('dateModified', $dateModified); } /** * get note contents * * @return string */ public function getContents() { return $this->getData('contents'); } /** * set note contents * * @param string $contents */ public function setContents($contents) { $this->setData('contents', $contents); } /** * get note title * * @return string */ public function getTitle() { return $this->getData('title'); } /** * set note title * * @param string $title */ public function setTitle($title) { $this->setData('title', $title); } /** * get note type * * @return int */ public function getAssocType() { return $this->getData('assocType'); } /** * set note type * * @param int $assocType */ public function setAssocType($assocType) { $this->setData('assocType', $assocType); } /** * get note assoc id * * @return int */ public function getAssocId() { return $this->getData('assocId'); } /** * set note assoc id * * @param int $assocId */ public function setAssocId($assocId) { $this->setData('assocId', $assocId); } } if (!PKP_STRICT_MODE) { class_alias('\PKP\note\Note', '\Note'); }