Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'prolic/view2' into prolic-zen-52
Browse files Browse the repository at this point in the history
Conflicts:
	library/Zend/Dojo/View/Helper/Dijit.php
  • Loading branch information
EvanDotPro committed Jun 28, 2012
Show file tree
Hide file tree
Showing 15 changed files with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
abstract class HtmlElement extends AbstractHelper
abstract class AbstractHtmlElement extends AbstractHelper
{
/**
* EOL character
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/FormElement.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
abstract class FormElement extends HtmlElement
abstract class FormElement extends AbstractHtmlElement
{
/**
* @var \Zend\Translator\Translator
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/Gravatar.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Gravatar extends HtmlElement
class Gravatar extends AbstractHtmlElement
{
/**
* URL to gravatar service
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/HeadLink.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class HeadLink extends Placeholder\Container\Standalone
class HeadLink extends Placeholder\Container\AbstractStandalone
{
/**
* $_validAttributes
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/HeadMeta.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class HeadMeta extends Placeholder\Container\Standalone
class HeadMeta extends Placeholder\Container\AbstractStandalone
{
/**
* Types of attributes
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/HeadScript.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class HeadScript extends Placeholder\Container\Standalone
class HeadScript extends Placeholder\Container\AbstractStandalone
{
/**#@+
* Script type contants
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/HeadStyle.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class HeadStyle extends Placeholder\Container\Standalone
class HeadStyle extends Placeholder\Container\AbstractStandalone
{
/**
* Registry key for placeholder
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/HeadTitle.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class HeadTitle extends Placeholder\Container\Standalone
class HeadTitle extends Placeholder\Container\AbstractStandalone
{
/**
* Registry key for placeholder
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/HtmlFlash.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class HtmlFlash extends HtmlElement
class HtmlFlash extends AbstractHtmlElement
{
/**
* Default file type for a flash applet
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/HtmlObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class HtmlObject extends HtmlElement
class HtmlObject extends AbstractHtmlElement
{
/**
* Output an object set
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/HtmlPage.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class HtmlPage extends HtmlElement
class HtmlPage extends AbstractHtmlElement
{
/**
* Default file type for html
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/HtmlQuicktime.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class HtmlQuicktime extends HtmlElement
class HtmlQuicktime extends AbstractHtmlElement
{
/**
* Default file type for a movie applet
Expand Down
6 changes: 3 additions & 3 deletions src/Helper/Navigation/AbstractHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
abstract class AbstractHelper
extends View\Helper\HtmlElement
extends View\Helper\AbstractHtmlElement
implements HelperInterface,
ServiceLocatorAwareInterface
{
Expand Down Expand Up @@ -782,7 +782,7 @@ protected function getWhitespace($indent)
/**
* Converts an associative array to a string of tag attributes.
*
* Overloads {@link View\Helper\HtmlElement::_htmlAttribs()}.
* Overloads {@link View\Helper\AbstractHtmlElement::_htmlAttribs()}.
*
* @param array $attribs an array where each key-value pair is converted
* to an attribute name and value
Expand All @@ -803,7 +803,7 @@ protected function _htmlAttribs($attribs)
/**
* Normalize an ID
*
* Overrides {@link View\Helper\HtmlElement::_normalizeId()}.
* Overrides {@link View\Helper\AbstractHtmlElement::_normalizeId()}.
*
* @param string $value
* @return string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
abstract class Standalone
abstract class AbstractStandalone
extends \Zend\View\Helper\AbstractHelper
implements \IteratorAggregate, \Countable, \ArrayAccess
{
Expand Down Expand Up @@ -84,7 +84,7 @@ public function getRegistry()
* Set registry object
*
* @param \Zend\View\Helper\Placeholder\Registry $registry
* @return \Zend\View\Helper\Placeholder\Container\Standalone
* @return \Zend\View\Helper\Placeholder\Container\AbstractStandalone
*/
public function setRegistry(Registry $registry)
{
Expand All @@ -96,7 +96,7 @@ public function setRegistry(Registry $registry)
* Set whether or not auto escaping should be used
*
* @param bool $autoEscape whether or not to auto escape output
* @return \Zend\View\Helper\Placeholder\Container\Standalone
* @return \Zend\View\Helper\Placeholder\Container\AbstractStandalone
*/
public function setAutoEscape($autoEscape = true)
{
Expand Down Expand Up @@ -136,7 +136,7 @@ protected function _escape($string)
* Set container on which to operate
*
* @param \Zend\View\Helper\Placeholder\Container\AbstractContainer $container
* @return \Zend\View\Helper\Placeholder\Container\Standalone
* @return \Zend\View\Helper\Placeholder\Container\AbstractStandalone
*/
public function setContainer(AbstractContainer $container)
{
Expand Down
2 changes: 1 addition & 1 deletion test/Helper/Placeholder/StandaloneContainerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function testContainersPersistBetweenInstances()
}
}

class Foo extends \Zend\View\Helper\Placeholder\Container\Standalone
class Foo extends \Zend\View\Helper\Placeholder\Container\AbstractStandalone
{
protected $_regKey = 'foo';
public function direct() {}
Expand Down

0 comments on commit 22e9606

Please sign in to comment.