1: <?php
2: /*
3: * This is used by control tests. Must be here so it can be unserialized, since tests are dynamically loaded.
4: */
5:
6: /*
7: * This is used by control tests. Must be here so it can be unserialized, since tests are dynamically loaded.
8: */
9: class QTestControl extends QControl {
10: public $savedValue1 = 1;
11: public $savedValue2 = 0;
12:
13: protected function GetControlHtml() {
14: return "";
15: }
16:
17: public function ParsePostData() {
18:
19: }
20:
21: public function Validate() {
22: return true;
23: }
24:
25: public function GetWrapperStyleAttributes($blnIsBlockElement=false) {
26: return parent::GetWrapperStyleAttributes($blnIsBlockElement);
27: }
28: }