00001 <?php
00002
00015 import('lib.pkp.classes.controllers.grid.GridCategoryRow');
00016
00017 class SelectableSubmissionFileListCategoryGridRow extends GridCategoryRow {
00018
00022 function SelectableSubmissionFileListCategoryGridRow() {
00023 parent::GridCategoryRow();
00024 }
00025
00026
00027
00028
00032 function getCategoryLabel() {
00033 $stageId = $this->getData();
00034 $userGroupDao =& DAORegistry::getDAO('UserGroupDAO');
00035 $stageTranslationKey = $userGroupDao->getTranslationKeyFromId($stageId);
00036
00037 return __($stageTranslationKey);
00038 }
00039 }
00040
00041 ?>