00001 <?php
00002
00017 import('lib.pkp.classes.submission.PKPAuthor');
00018
00019 class Author extends PKPAuthor {
00023 function Author() {
00024 parent::PKPAuthor();
00025 }
00026
00027
00028
00029
00034 function getLocalizedUserGroupName() {
00035
00036 $userGroupDao =& DAORegistry::getDAO('UserGroupDAO');
00037 $userGroup =& $userGroupDao->getById($this->getUserGroupId());
00038 return $userGroup->getLocalizedName();
00039 }
00040
00045 function &getPublishedMonograph() {
00046 $monographId = $this->getSubmissionId();
00047 $publishedMonographDao =& DAORegistry::getDAO('PublishedMonographDAO');
00048 return $publishedMonographDao->getById($monographId);
00049 }
00050 }
00051
00052 ?>