. */ class PersonsGym extends Persons { private $showshort = false; public function __construct($dummy=0) { $this->name = "Gym"; } public function get_print_name() { return "Gym"; } public function get_print_name_short() { $this->showshort = true; return "Gym"; } public function display($value, $PersonID=0, &$allvalues="") { if( $value>0 ) return $value; else return ""; } } ?>