. */ class PersonsParticipantOrder extends Persons { private $showshort = false; public function __construct($dummy=0) { $this->name = "ParticipantOrder"; } public function get_print_name() { return "Participant order"; } public function get_print_name_short() { $this->showshort = true; return "Participant order"; } public function get_access($dummy=0) { if( in_array("application_viewlist", $_SESSION['sess_functions']) ) return self::ACCESS_R; else return self::ACCESS_NO; } } ?>