diff options
author | wei <> | 2006-05-05 08:23:20 +0000 |
---|---|---|
committer | wei <> | 2006-05-05 08:23:20 +0000 |
commit | db7d5e7d65bba035a5adedc84d683f3195bf27ea (patch) | |
tree | 1e33cfef9784670691bd5a64599530f1e9920942 /framework | |
parent | 4d70cc125dcd915cdbc8c4f13964d27ebec96eca (diff) |
Adding TActivePanel
Diffstat (limited to 'framework')
-rw-r--r-- | framework/Web/UI/ActiveControls/TActivePanel.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/framework/Web/UI/ActiveControls/TActivePanel.php b/framework/Web/UI/ActiveControls/TActivePanel.php new file mode 100644 index 00000000..b3568279 --- /dev/null +++ b/framework/Web/UI/ActiveControls/TActivePanel.php @@ -0,0 +1,20 @@ +<?php
+/*
+ * Created on 5/05/2006
+ */
+
+class TActivePanel extends TPanel
+{
+ /**
+ * Creates a new callback control, sets the adapter to
+ * TActiveControlAdapter. If you override this class, be sure to set the
+ * adapter appropriately by, for example, by calling this constructor.
+ */
+ public function __construct()
+ {
+ parent::__construct();
+ $this->setAdapter(new TActiveControlAdapter($this));
+ }
+}
+
+?>
\ No newline at end of file |