Open Journal Systems
3.3.0
ListbuilderGridColumn.inc.php
1
<?php
2
17
import
(
'lib.pkp.classes.controllers.grid.GridColumn'
);
18
19
class
ListbuilderGridColumn
extends
GridColumn
{
30
function
__construct
($listbuilder, $id =
''
, $title =
null
, $titleTranslated =
null
,
31
$template =
null
, $cellProvider =
null
, $flags = array()) {
32
33
// Set this here so that callers using later optional parameters don't need to
34
// duplicate it.
35
if
($template ===
null
) $template =
'controllers/listbuilder/listbuilderGridCell.tpl'
;
36
37
// Make the listbuilder's source type available to the cell template as a flag
38
$flags[
'sourceType'
] = $listbuilder->getSourceType();
39
parent::__construct($id, $title, $titleTranslated, $template, $cellProvider, $flags);
40
}
41
}
42
43
GridColumn
The GridColumn class represents a column within a grid. It is used to format the data presented in a ...
Definition:
GridColumn.inc.php:27
ListbuilderGridColumn\__construct
__construct($listbuilder, $id='', $title=null, $titleTranslated=null, $template=null, $cellProvider=null, $flags=array())
Definition:
ListbuilderGridColumn.inc.php:30
ListbuilderGridColumn
Represents a column within a listbuilder.
Definition:
ListbuilderGridColumn.inc.php:19
lib
pkp
classes
controllers
listbuilder
ListbuilderGridColumn.inc.php
Generated on Fri Aug 28 2020 14:52:33 for Open Journal Systems by
1.8.17