00001 <?php 00002 00015 import('lib.pkp.classes.controllers.grid.GridCategoryRow'); 00016 00017 class SystemInfoGridCategoryRow extends GridCategoryRow { 00018 00019 var $_configSection; 00020 00024 function SystemInfoGridCategoryRow() { 00025 parent::GridCategoryRow(); 00026 } 00027 00028 // 00029 // Overridden methods from GridCategoryRow 00030 // 00035 function initialize(&$request) { 00036 // Do the default initialization 00037 parent::initialize($request); 00038 $this->_configSection =& $this->getData(); 00039 } 00040 00045 function getCategoryLabel() { 00046 return $this->_configSection; 00047 } 00048 } 00049 ?>
1.7.1