summaryrefslogtreecommitdiff
path: root/framework/Web/UI/ActiveControls/TActivePanel.php
diff options
context:
space:
mode:
authorwei <>2006-05-05 08:23:20 +0000
committerwei <>2006-05-05 08:23:20 +0000
commitdb7d5e7d65bba035a5adedc84d683f3195bf27ea (patch)
tree1e33cfef9784670691bd5a64599530f1e9920942 /framework/Web/UI/ActiveControls/TActivePanel.php
parent4d70cc125dcd915cdbc8c4f13964d27ebec96eca (diff)
Adding TActivePanel
Diffstat (limited to 'framework/Web/UI/ActiveControls/TActivePanel.php')
-rw-r--r--framework/Web/UI/ActiveControls/TActivePanel.php20
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