. */ class PersonsName extends Persons { private $showshort = false; public function __construct($dummy=0) { $this->name = "Name"; } public function get_print_name() { return "Name"; } public function get_print_name_short() { $this->showshort = true; return "Name"; } public function sql_columnname() { return "CONCAT(`persons`.`FirstName`, ' ', `persons`.`LastName`) AS `Name`"; } public function is_sqlcolumn() { return false; } } ?>