Text; } function getURL() { return $this->URL; } function getTarget() { return $this->Target; } function getLevel() { return $this->Level; } function setText($_Text) { $this->Text = $_Text; } function setURL($_URL) { $this->URL = $_URL; } function setTarget($_Target) { $this->Target = $_Target; } function setLevel($_Level) { $this->Level = $_Level; } # Main constructors function Link($_Text, $_URL, $_Target, $_Level) { $this->setText ($_Text); $this->setURL ($_URL); $this->setTarget ($_Target); $this->setLevel ($_Level); } } ?>