title = "Help topics"; $this->topics = array(); foreach (glob("$helpdir/*") as $topic) { $topic = basename($topic); $this->topics[] = $topic; } return; } if (!file_exists($name)) { $this->title = "no help topic $topic"; $this->no_topic = $topic; return; } $this->body = MTrack_Wiki::format_to_html(file_get_contents($name)); } }