Open Journal Systems  3.3.0
NullGridCellProvider.inc.php
1 <?php
2 
18 import('lib.pkp.classes.controllers.grid.GridCellProvider');
19 
21 
22  //
23  // Template methods from GridCellProvider
24  //
28  function render($request, $row, $column) {
29  return null;
30  }
31 }
32 
33 
NullGridCellProvider
Class to return null when render method is called by a grid handler. Use this when you want to create...
Definition: NullGridCellProvider.inc.php:20
NullGridCellProvider\render
render($request, $row, $column)
Definition: NullGridCellProvider.inc.php:28
GridCellProvider
Base class for a grid column's cell provider.
Definition: GridCellProvider.inc.php:20