Open Journal Systems  3.3.0
GridCategoryRow.inc.php
1 <?php
2 
16 import('lib.pkp.classes.controllers.grid.GridRow');
17 import('lib.pkp.classes.controllers.grid.GridCategoryRowCellProvider');
18 
19 class GridCategoryRow extends GridRow {
21  var $_emptyCategoryRowText = 'grid.noItems';
22 
26  function __construct() {
27  parent::__construct();
28 
29  // Set a default cell provider that will get the cell template
30  // variables from the category grid row.
32  }
33 
34 
35  //
36  // Getters/Setters
37  //
41  function getEmptyCategoryRowText() {
43  }
44 
48  function setEmptyCategoryRowText($emptyCategoryRowText) {
49  $this->_emptyCategoryRowText = $emptyCategoryRowText;
50  }
51 
57  function getCategoryLabel() {
58  return '';
59  }
60 }
61 
62 
GridCategoryRow\$_emptyCategoryRowText
$_emptyCategoryRowText
Definition: GridCategoryRow.inc.php:24
GridCategoryRowCellProvider
Default grid category row column's cell provider. This class will retrieve the template variables fro...
Definition: GridCategoryRowCellProvider.inc.php:19
GridCategoryRow
Class defining basic operations for handling the category row in a grid.
Definition: GridCategoryRow.inc.php:19
GridCategoryRow\__construct
__construct()
Definition: GridCategoryRow.inc.php:29
GridBodyElement\setCellProvider
setCellProvider($cellProvider)
Definition: GridBodyElement.inc.php:118
GridCategoryRow\getCategoryLabel
getCategoryLabel()
Definition: GridCategoryRow.inc.php:60
GridRow
GridRow implements a row of a Grid. See GridHandler for general information about grids.
Definition: GridRow.inc.php:29
GridCategoryRow\setEmptyCategoryRowText
setEmptyCategoryRowText($emptyCategoryRowText)
Definition: GridCategoryRow.inc.php:51
GridCategoryRow\getEmptyCategoryRowText
getEmptyCategoryRowText()
Definition: GridCategoryRow.inc.php:44