. */ class PersonsBoardConfirmed extends Persons { private $showshort = false; public function __construct($dummy=0) { $this->name = "BoardConfirmed"; } public function get_print_name() { return "Board confirmed"; } public function get_print_name_short() { $this->showshort = true; return "Board confirmed"; } public function display($value, $PersonID=0, &$allvalues="") { $Accepted_img = array(); $Accepted_text = array(); $Accepted_img["-"]="./image/minus.gif"; $Accepted_text["-"]="Pending"; $Accepted_img["yes"]="./image/check.gif"; $Accepted_text["yes"]="Yes"; $Accepted_img["no"]="./image/nocheck.gif"; $Accepted_text["no"]="No"; return "\"".$Accepted_text["; } public function displaytext($value, $PersonID=0, &$allvalues="") { $Accepted_text = array(); $Accepted_text["-"]="Pending"; $Accepted_text["yes"]="Yes"; $Accepted_text["no"]="No"; return $Accepted_text[ $value ]; } public function displayoptions($personID=0) { return " align=\"center\""; } } ?>