00001 <?php 00002 00015 import('lib.pkp.classes.controllers.grid.GridRow'); 00016 00017 class AddThisStatisticsGridRow extends GridRow { 00021 function AddThisStatisticsGridRow() { 00022 parent::GridRow(); 00023 } 00024 00025 // 00026 // Overridden methods from GridRow 00027 // 00032 function initialize(&$request) { 00033 // Do the default initialization 00034 parent::initialize($request); 00035 00036 // Is this a new row or an existing row? 00037 $statsRow = $this->_data; 00038 if ($statsRow != null) { 00039 // no grid actions for this. 00040 $this->setTemplate('controllers/grid/gridRow.tpl'); 00041 } 00042 } 00043 00044 } 00045 ?>
1.7.1