00001 <?php 00002 00016 //$Id$ 00017 00018 00019 import('submission.PKPAuthor'); 00020 00021 class Author extends PKPAuthor { 00022 00026 function Author() { 00027 parent::PKPAuthor(); 00028 } 00029 00030 00031 // 00032 // Get/set methods 00033 // 00034 00039 function getPaperId() { 00040 return $this->getData('paperId'); 00041 } 00042 00047 function setPaperId($paperId) { 00048 return $this->setData('paperId', $paperId); 00049 } 00050 } 00051 00052 ?>
1.4.7