diff options
| -rw-r--r-- | .gitattributes | 1 | ||||
| -rw-r--r-- | framework/Web/UI/ActiveControls/TActivePanel.php | 20 | 
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 | 
