opt = $opt; if (is_numeric($this->opt['_restAlias'])) { $this->id_individual = intval($this->opt['_restAlias']); } } function exec(&$Doc) { if (!$this->id_individual) { $NotFound = SiteMap::getObj('NotFound/NotFoundView.php'); $NotFound->exec($Doc); return; } $DBObj = SiteMap::getObj('Member/EventHistory/EventHistory.php', @$_REQUEST['id'], $this->id_individual); $Grid = SiteMap::getObj('Member/EventHistory/Grid/Grid.php', $Doc, $DBObj); $Grid->exec(); } }