. */ /** * Simple date column */ require_once(ROOTPATH."include/list/TextColumn.php"); class EmailColumn extends TextColumn { /** * Constructor * * @param string name of the column (as provided in the parameter of getCellValue()) * @param string header value */ public function __construct($name, $header) { parent::__construct($name, $header); } public function getCellValue($rowNum, $row) { return "name]."\">".IconHelper::getIcon("mail", "Send e-mail")." ".$row[$this->name]; } } ?>