5 * @file classes/ui/grid/GridCell.inc.php
7 * Copyright (c) 2000-2009 John Willinsky
8 * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
13 * @brief Class defining basic operations for handling HTML grids.
17 /** Internal identifier for a given cell. To be used as a programmatic reference. */
22 /** Reference to the row object to which this cell belongs **/
30 function GridCell($id = null) {
46 function setRow(&$row) {
50 function setContents($content) {
51 $this->content
= $content;
54 function getContents() {
55 return $this->content
;
58 function getGridCellActions() {