Open Monograph Press  3.3.0
ChapterAuthor.inc.php
1 <?php
2 
18 import('classes.monograph.Author');
19 
20 class ChapterAuthor extends Author {
21  //
22  // Get/set methods
23  //
24 
29  function getChapterId() {
30  return $this->getData('chapterId');
31  }
32 
37  function setChapterId($chapterId) {
38  return $this->setData('chapterId', $chapterId);
39  }
40 }
41 
42 
DataObject\getData
& getData($key, $locale=null)
Definition: DataObject.inc.php:100
ChapterAuthor\setChapterId
setChapterId($chapterId)
Definition: ChapterAuthor.inc.php:37
Author
Monograph author metadata class.
Definition: Author.inc.php:20
ChapterAuthor
Adds chapterId to an Author.
Definition: ChapterAuthor.inc.php:20
ChapterAuthor\getChapterId
getChapterId()
Definition: ChapterAuthor.inc.php:29
DataObject\setData
setData($key, $value, $locale=null)
Definition: DataObject.inc.php:132