tag_start= ""; $this->tag_end = ""; $this->tag_body_start = ""; $this->tag_body_end = ""; if(!is_null($class)) $this->SetClass($class); if(!is_null($item)) $this->AddItem($item); if(!is_null($url)) $this->SetUrl($url); } function SetAction($value=NULL) { if(is_null($value)) return $this->options['action'] = $page['file']; return $this->options['onClick'] = htmlspecialchars($value); } function SetUrl($value) { $this->AddOption('href', $value); } function SetTarget($value=NULL) { if(is_null($value)) { unset($this->options['target']); } else { $this->options['target'] = $value; } } } ?>