From b0de1fe1d975e43a060c66da16f3cc2474d70bae Mon Sep 17 00:00:00 2001 From: Tim Almdal Date: Mon, 7 Dec 2009 20:46:18 -0800 Subject: Delete Form_Label.php which was accidently committed. --- modules/rest/libraries/Form_Label.php | 45 ----------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 modules/rest/libraries/Form_Label.php (limited to 'modules') diff --git a/modules/rest/libraries/Form_Label.php b/modules/rest/libraries/Form_Label.php deleted file mode 100644 index 315ff510..00000000 --- a/modules/rest/libraries/Form_Label.php +++ /dev/null @@ -1,45 +0,0 @@ - "label", - "text" => ""); - - public function __construct($label) { - $this->data["text"] = $label; - } - - public function __get($key) { - return isset($this->data[$key]) ? $this->data[$key] : null; - } - - // In this element we never want print any html so make sure - // render and ultimately html_element only return the empty string - public function render() { - return $this->html_element(); - } - - public function html_element() { - $data = $this->data; - unset($data["text"]); - return "

{$this->data['text']}

"; - } - -} // End Form Script \ No newline at end of file -- cgit v1.2.3