. */ /** * Get visit info as array by visit id. Pass % for all. * TODO - break into select sections for speed by pagination * Pass NULL for nulls, % for any not null * * @author josh.north */ namespace classes; use App\LobbySIO\Config\Registry; class visit { public function dbprefix() { //echo Registry::DB_PRFX; } // Properties public $name; public $color; // Methods function set_name($name) { $this->name = $name; } function get_name() { return $this->name; } }