import v2.0.0.0_RC3 | 2012-07-01

https://github.com/lucanos/CommunityID -> http://www.itadmins.net/archives/357
This commit is contained in:
2019-07-17 22:31:04 +02:00
parent 38c146901c
commit 2f397f01f7
2677 changed files with 296182 additions and 45159 deletions

View File

@ -16,7 +16,7 @@
* @package Zend_Dojo
* @subpackage View
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @version $Id: Dojo.php 16541 2009-07-07 06:59:03Z bkarwin $
* @version $Id: Dojo.php 18951 2009-11-12 16:26:19Z alexander $
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
@ -26,16 +26,16 @@ require_once 'Zend/Registry.php';
/**
* Zend_Dojo_View_Helper_Dojo: Dojo View Helper
*
* Allows specifying stylesheets, path to dojo, module paths, and onLoad
* events.
*
* Allows specifying stylesheets, path to dojo, module paths, and onLoad
* events.
*
* @package Zend_Dojo
* @subpackage View
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Zend_Dojo_View_Helper_Dojo
{
class Zend_Dojo_View_Helper_Dojo
{
/**#@+
* @const Programmatic dijit creation style constants
*/
@ -46,7 +46,7 @@ class Zend_Dojo_View_Helper_Dojo
/**
* @var Zend_View_Interface
*/
public $view;
public $view;
/**
* @var Zend_Dojo_View_Helper_Dojo_Container
@ -61,9 +61,9 @@ class Zend_Dojo_View_Helper_Dojo
/**
* Initialize helper
*
* Retrieve container from registry or create new container and store in
* Retrieve container from registry or create new container and store in
* registry.
*
*
* @return void
*/
public function __construct()
@ -79,8 +79,8 @@ class Zend_Dojo_View_Helper_Dojo
/**
* Set view object
*
* @param Zend_Dojo_View_Interface $view
*
* @param Zend_Dojo_View_Interface $view
* @return void
*/
public function setView(Zend_View_Interface $view)
@ -91,7 +91,7 @@ class Zend_Dojo_View_Helper_Dojo
/**
* Return dojo container
*
*
* @return Zend_Dojo_View_Helper_Dojo_Container
*/
public function dojo()
@ -101,9 +101,9 @@ class Zend_Dojo_View_Helper_Dojo
/**
* Proxy to container methods
*
* @param string $method
* @param array $args
*
* @param string $method
* @param array $args
* @return mixed
* @throws Zend_Dojo_View_Exception For invalid method calls
*/
@ -119,7 +119,7 @@ class Zend_Dojo_View_Helper_Dojo
/**
* Set whether or not dijits should be created declaratively
*
*
* @return void
*/
public static function setUseDeclarative()
@ -130,10 +130,10 @@ class Zend_Dojo_View_Helper_Dojo
/**
* Set whether or not dijits should be created programmatically
*
* Optionally, specifiy whether or not dijit helpers should generate the
* Optionally, specifiy whether or not dijit helpers should generate the
* programmatic dojo.
*
* @param int $style
*
* @param int $style
* @return void
*/
public static function setUseProgrammatic($style = self::PROGRAMMATIC_SCRIPT)
@ -146,7 +146,7 @@ class Zend_Dojo_View_Helper_Dojo
/**
* Should dijits be created declaratively?
*
*
* @return bool
*/
public static function useDeclarative()
@ -156,7 +156,7 @@ class Zend_Dojo_View_Helper_Dojo
/**
* Should dijits be created programmatically?
*
*
* @return bool
*/
public static function useProgrammatic()
@ -166,7 +166,7 @@ class Zend_Dojo_View_Helper_Dojo
/**
* Should dijits be created programmatically but without scripts?
*
*
* @return bool
*/
public static function useProgrammaticNoScript()