summaryrefslogtreecommitdiff
path: root/framework/Web/UI/ActiveControls/TActivePanel.php
diff options
context:
space:
mode:
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