getId(); assert(!empty($columnId)); // Construct a default cell id (null for "nonexistent" new rows) $rowId = $row->getId(); // Potentially null (indicating row not backed in the DB) $cellId = isset($rowId)?$rowId.'-'.$columnId:null; // Assign values extracted from the element for the cell. $templateMgr =& TemplateManager::getManager(); $templateVars = $this->getTemplateVarsFromRowColumn($row, $column); foreach ($templateVars as $varName => $varValue) { $templateMgr->assign($varName, $varValue); } $templateMgr->assign('id', $cellId); $templateMgr->assign_by_ref('column', $column); $templateMgr->assign_by_ref('actions', $this->getCellActions($request, $row, $column)); $templateMgr->assign_by_ref('flags', $column->getFlags()); $templateMgr->assign('formLocales', AppLocale::getSupportedFormLocales()); $template = $column->getTemplate(); assert(!empty($template)); return $templateMgr->fetch($template); } // // Protected template methods // /** * Subclasses have to implement this method to extract variables * for a given column from a data element so that they may be assigned * to template before rendering. * @param $row GridRow * @param $column GridColumn * @return array */ function getTemplateVarsFromRowColumn(&$row, $column) { return array(); } /** * Subclasses can override this template method to provide * cell specific actions. * * NB: The default implementation delegates to the grid column for * cell-specific actions. Another thinkable implementation would * be row-specific actions in which case action instantiation * should be delegated to the row. * * @param $request Request * @param $row GridRow * @param $column GridColumn * @return array an array of LinkAction instances */ function &getCellActions(&$request, &$row, &$column, $position = GRID_ACTION_POSITION_DEFAULT) { $actions =& $column->getCellActions($request, $row, $position); return $actions; } } ?>