diff options
Diffstat (limited to 'framework/Web/UI/JuiControls')
15 files changed, 59 insertions, 30 deletions
diff --git a/framework/Web/UI/JuiControls/IJuiOptions.php b/framework/Web/UI/JuiControls/IJuiOptions.php index b021c421..5747b6be 100644 --- a/framework/Web/UI/JuiControls/IJuiOptions.php +++ b/framework/Web/UI/JuiControls/IJuiOptions.php @@ -6,9 +6,11 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2013-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls */ +namespace Prado\Web\UI\JuiControls; + /** * IJuiOptions interface * @@ -16,7 +18,7 @@ * {@link TJuiControlOptions}. * * @author Fabio Bas <ctrlaltca@gmail.com> - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls * @since 3.3 */ interface IJuiOptions diff --git a/framework/Web/UI/JuiControls/TJuiAutoComplete.php b/framework/Web/UI/JuiControls/TJuiAutoComplete.php index 1ef05ba2..224eb306 100644 --- a/framework/Web/UI/JuiControls/TJuiAutoComplete.php +++ b/framework/Web/UI/JuiControls/TJuiAutoComplete.php @@ -6,9 +6,11 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Web.UI.ActiveControls + * @package Prado\Web\UI\JuiControls */ +namespace Prado\Web\UI\JuiControls; + /** * Load active text box. */ @@ -76,7 +78,7 @@ Prado::using('System.Web.UI.JuiControls.TJuiControlAdapter'); * "informal" are ignored as text for suggestions. * * @author Wei Zhuo <weizhuo[at]gmail[dot]com> - * @package System.Web.UI.ActiveControls + * @package Prado\Web\UI\JuiControls * @since 3.1 */ class TJuiAutoComplete extends TActiveTextBox implements INamingContainer, IJuiOptions diff --git a/framework/Web/UI/JuiControls/TJuiAutoCompleteEventParameter.php b/framework/Web/UI/JuiControls/TJuiAutoCompleteEventParameter.php index d722632e..f404ac9a 100644 --- a/framework/Web/UI/JuiControls/TJuiAutoCompleteEventParameter.php +++ b/framework/Web/UI/JuiControls/TJuiAutoCompleteEventParameter.php @@ -6,9 +6,11 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Web.UI.ActiveControls + * @package Prado\Web\UI\JuiControls */ +namespace Prado\Web\UI\JuiControls; + /** * TJuiAutoCompleteEventParameter contains the {@link getToken Token} requested by * the user for a partial match of the suggestions. @@ -17,7 +19,7 @@ * suggestion selected by the user, -1 if not suggestion is selected. * * @author Wei Zhuo <weizhuo[at]gmail[dot]com> - * @package System.Web.UI.ActiveControls + * @package Prado\Web\UI\JuiControls * @since 3.1 */ class TJuiAutoCompleteEventParameter extends TCallbackEventParameter diff --git a/framework/Web/UI/JuiControls/TJuiAutoCompleteTemplate.php b/framework/Web/UI/JuiControls/TJuiAutoCompleteTemplate.php index cc4eb449..9e5f34bb 100644 --- a/framework/Web/UI/JuiControls/TJuiAutoCompleteTemplate.php +++ b/framework/Web/UI/JuiControls/TJuiAutoCompleteTemplate.php @@ -6,9 +6,11 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Web.UI.ActiveControls + * @package Prado\Web\UI\JuiControls */ +namespace Prado\Web\UI\JuiControls; + /** * TJuiAutoCompleteTemplate class. * @@ -16,7 +18,7 @@ * item template. * * @author Wei Zhuo <weizhuo[at]gmail[dot]com> - * @package System.Web.UI.ActiveControls + * @package Prado\Web\UI\JuiControls * @since 3.1 */ class TJuiAutoCompleteTemplate extends TComponent implements ITemplate diff --git a/framework/Web/UI/JuiControls/TJuiControlAdapter.php b/framework/Web/UI/JuiControls/TJuiControlAdapter.php index 462927ad..301d424d 100644 --- a/framework/Web/UI/JuiControls/TJuiControlAdapter.php +++ b/framework/Web/UI/JuiControls/TJuiControlAdapter.php @@ -6,9 +6,11 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2013-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls */ +namespace Prado\Web\UI\JuiControls; + Prado::using('System.Web.UI.ActiveControls.TActiveControlAdapter'); /** @@ -19,7 +21,7 @@ Prado::using('System.Web.UI.ActiveControls.TActiveControlAdapter'); * publish jQuery-UI javascript and css assets. * * @author Fabio Bas <ctrlaltca@gmail.com> - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls * @since 3.3 */ class TJuiControlAdapter extends TActiveControlAdapter diff --git a/framework/Web/UI/JuiControls/TJuiControlOptions.php b/framework/Web/UI/JuiControls/TJuiControlOptions.php index 038da26e..cc065fe5 100644 --- a/framework/Web/UI/JuiControls/TJuiControlOptions.php +++ b/framework/Web/UI/JuiControls/TJuiControlOptions.php @@ -6,9 +6,11 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2013-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls */ +namespace Prado\Web\UI\JuiControls; + /** * TJuiControlOptions interface * @@ -22,7 +24,7 @@ * for any event for which an handler is defined in the control. * * @author Fabio Bas <ctrlaltca@gmail.com> - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls * @since 3.3 */ class TJuiControlOptions diff --git a/framework/Web/UI/JuiControls/TJuiDraggable.php b/framework/Web/UI/JuiControls/TJuiDraggable.php index 56e6c7e7..a875557f 100644 --- a/framework/Web/UI/JuiControls/TJuiDraggable.php +++ b/framework/Web/UI/JuiControls/TJuiDraggable.php @@ -6,9 +6,11 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2013-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls */ +namespace Prado\Web\UI\JuiControls; + Prado::using('System.Web.UI.JuiControls.TJuiControlAdapter'); Prado::using('System.Web.UI.ActiveControls.TActivePanel'); @@ -32,7 +34,7 @@ Prado::using('System.Web.UI.ActiveControls.TActivePanel'); * </code> * * @author Fabio Bas <ctrlaltca[at]gmail[dot]com> - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls * @since 3.3 */ class TJuiDraggable extends TActivePanel implements IJuiOptions, ICallbackEventHandler diff --git a/framework/Web/UI/JuiControls/TJuiDroppable.php b/framework/Web/UI/JuiControls/TJuiDroppable.php index 2d2ed6b9..1d51438c 100644 --- a/framework/Web/UI/JuiControls/TJuiDroppable.php +++ b/framework/Web/UI/JuiControls/TJuiDroppable.php @@ -6,9 +6,11 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2013-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls */ +namespace Prado\Web\UI\JuiControls; + Prado::using('System.Web.UI.JuiControls.TJuiControlAdapter'); Prado::using('System.Web.UI.ActiveControls.TActivePanel'); @@ -52,7 +54,7 @@ Prado::using('System.Web.UI.ActiveControls.TActivePanel'); * </code> * * @author Fabio Bas <ctrlaltca[at]gmail[dot]com> - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls * @since 3.3 */ class TJuiDroppable extends TActivePanel implements IJuiOptions, ICallbackEventHandler diff --git a/framework/Web/UI/JuiControls/TJuiEventParameter.php b/framework/Web/UI/JuiControls/TJuiEventParameter.php index ac9c378d..87ed0d84 100644 --- a/framework/Web/UI/JuiControls/TJuiEventParameter.php +++ b/framework/Web/UI/JuiControls/TJuiEventParameter.php @@ -6,9 +6,11 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2013-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls */ +namespace Prado\Web\UI\JuiControls; + /** * TJuiEventParameter class * @@ -33,7 +35,7 @@ * * @author Fabio Bas <ctrlaltca[at]gmail[dot]com> * @license http://www.pradosoft.com/license - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls */ class TJuiEventParameter extends TCallbackEventParameter { diff --git a/framework/Web/UI/JuiControls/TJuiProgressbar.php b/framework/Web/UI/JuiControls/TJuiProgressbar.php index 41f3eab4..a4779a1f 100644 --- a/framework/Web/UI/JuiControls/TJuiProgressbar.php +++ b/framework/Web/UI/JuiControls/TJuiProgressbar.php @@ -6,9 +6,11 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2013-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls */ +namespace Prado\Web\UI\JuiControls; + Prado::using('System.Web.UI.JuiControls.TJuiControlAdapter'); Prado::using('System.Web.UI.ActiveControls.TActivePanel'); @@ -28,7 +30,7 @@ Prado::using('System.Web.UI.ActiveControls.TActivePanel'); * </code> * * @author Fabio Bas <ctrlaltca[at]gmail[dot]com> - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls * @since 3.3 */ class TJuiProgressbar extends TActivePanel implements IJuiOptions, ICallbackEventHandler diff --git a/framework/Web/UI/JuiControls/TJuiResizable.php b/framework/Web/UI/JuiControls/TJuiResizable.php index 5e1f8d31..54add982 100644 --- a/framework/Web/UI/JuiControls/TJuiResizable.php +++ b/framework/Web/UI/JuiControls/TJuiResizable.php @@ -6,9 +6,11 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2013-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls */ +namespace Prado\Web\UI\JuiControls; + Prado::using('System.Web.UI.JuiControls.TJuiControlAdapter'); Prado::using('System.Web.UI.ActiveControls.TActivePanel'); @@ -34,7 +36,7 @@ Prado::using('System.Web.UI.ActiveControls.TActivePanel'); * </code> * * @author Fabio Bas <ctrlaltca[at]gmail[dot]com> - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls * @since 3.3 */ class TJuiResizable extends TActivePanel implements IJuiOptions, ICallbackEventHandler diff --git a/framework/Web/UI/JuiControls/TJuiSelectable.php b/framework/Web/UI/JuiControls/TJuiSelectable.php index c4eec235..11376da8 100644 --- a/framework/Web/UI/JuiControls/TJuiSelectable.php +++ b/framework/Web/UI/JuiControls/TJuiSelectable.php @@ -6,9 +6,11 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2013-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls */ +namespace Prado\Web\UI\JuiControls; + Prado::using('System.Web.UI.JuiControls.TJuiControlAdapter'); Prado::using('System.Web.UI.ActiveControls.TActivePanel'); @@ -34,7 +36,7 @@ Prado::using('System.Web.UI.ActiveControls.TActivePanel'); * $this->repeater1->dataBind(); * </code> * @author Fabio Bas <ctrlaltca[at]gmail[dot]com> - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls * @since 3.3 */ class TJuiSelectable extends TActivePanel implements IJuiOptions, ICallbackEventHandler diff --git a/framework/Web/UI/JuiControls/TJuiSelectableTemplate.php b/framework/Web/UI/JuiControls/TJuiSelectableTemplate.php index 846cfcef..82573384 100644 --- a/framework/Web/UI/JuiControls/TJuiSelectableTemplate.php +++ b/framework/Web/UI/JuiControls/TJuiSelectableTemplate.php @@ -6,9 +6,11 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2013-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls */ +namespace Prado\Web\UI\JuiControls; + /** * TJuiSelectableTemplate class. * @@ -16,7 +18,7 @@ * item template. * * @author Wei Zhuo <weizhuo[at]gmail[dot]com> - * @package System.Web.UI.ActiveControls + * @package Prado\Web\UI\JuiControls * @since 3.1 */ class TJuiSelectableTemplate extends TComponent implements ITemplate diff --git a/framework/Web/UI/JuiControls/TJuiSortable.php b/framework/Web/UI/JuiControls/TJuiSortable.php index 05d635d4..9072a72d 100644 --- a/framework/Web/UI/JuiControls/TJuiSortable.php +++ b/framework/Web/UI/JuiControls/TJuiSortable.php @@ -6,9 +6,11 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2013-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls */ +namespace Prado\Web\UI\JuiControls; + Prado::using('System.Web.UI.JuiControls.TJuiControlAdapter'); Prado::using('System.Web.UI.ActiveControls.TActivePanel'); @@ -31,7 +33,7 @@ Prado::using('System.Web.UI.ActiveControls.TActivePanel'); * </code> * * @author Fabio Bas <ctrlaltca[at]gmail[dot]com> - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls * @since 3.3 */ class TJuiSortable extends TActivePanel implements IJuiOptions, ICallbackEventHandler diff --git a/framework/Web/UI/JuiControls/TJuiSortableTemplate.php b/framework/Web/UI/JuiControls/TJuiSortableTemplate.php index 5903ea6c..3ef13741 100644 --- a/framework/Web/UI/JuiControls/TJuiSortableTemplate.php +++ b/framework/Web/UI/JuiControls/TJuiSortableTemplate.php @@ -6,9 +6,10 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2013-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @package System.Web.UI.JuiControls + * @package Prado\Web\UI\JuiControls */ +namespace Prado\Web\UI\JuiControls; /** * TJuiSortableTemplate class. @@ -17,7 +18,7 @@ * item template. * * @author Wei Zhuo <weizhuo[at]gmail[dot]com> - * @package System.Web.UI.ActiveControls + * @package Prado\Web\UI\JuiControls * @since 3.1 */ class TJuiSortableTemplate extends TComponent implements ITemplate |