summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/protected/pages/UI/LabeledTextBox.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/FunctionalTests/protected/pages/UI/LabeledTextBox.php')
-rw-r--r--tests/FunctionalTests/protected/pages/UI/LabeledTextBox.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/FunctionalTests/protected/pages/UI/LabeledTextBox.php b/tests/FunctionalTests/protected/pages/UI/LabeledTextBox.php
deleted file mode 100644
index 15702d29..00000000
--- a/tests/FunctionalTests/protected/pages/UI/LabeledTextBox.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-
-/**
- * LabeledTextBox
- *
- * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
- * @package System.Web.UI.WebControls
- * @since 3.0
- */
-class LabeledTextBox extends TTemplateControl
-{
- /**
- * @return TTextBox textbox instance
- */
- public function getTextBox()
- {
- $this->ensureChildControls();
- return $this->getRegisteredObject('textbox');
- }
-
- /**
- * @return TLabel textbox label
- */
- public function getLabel()
- {
- $this->ensureChildControls();
- return $this->getRegisteredObject('label');
- }
-}
-
-?> \ No newline at end of file