summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwei <>2006-05-05 08:23:20 +0000
committerwei <>2006-05-05 08:23:20 +0000
commitdb7d5e7d65bba035a5adedc84d683f3195bf27ea (patch)
tree1e33cfef9784670691bd5a64599530f1e9920942
parent4d70cc125dcd915cdbc8c4f13964d27ebec96eca (diff)
Adding TActivePanel
-rw-r--r--.gitattributes1
-rw-r--r--framework/Web/UI/ActiveControls/TActivePanel.php20
2 files changed, 21 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes
index 1567ada7..200e5d7b 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -930,6 +930,7 @@ framework/Web/THttpUtility.php -text
framework/Web/UI/ActiveControls/TActiveControlAdapter.php -text
framework/Web/UI/ActiveControls/TActiveLabel.php -text
framework/Web/UI/ActiveControls/TActivePageAdapter.php -text
+framework/Web/UI/ActiveControls/TActivePanel.php -text
framework/Web/UI/ActiveControls/TCallback.php -text
framework/Web/UI/ActiveControls/TCallbackClientScript.php -text
framework/Web/UI/ActiveControls/TCallbackClientSideOptions.php -text
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