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

Commit 22e9606

Browse files
committed
Merge remote-tracking branch 'prolic/view2' into prolic-zen-52
Conflicts: library/Zend/Dojo/View/Helper/Dijit.php
17 parents 173b5e8 + 4e7ff23 + 409b768 + 1b97191 + d2649e3 + f0162d1 + 6f01416 + a2b3753 + 1786961 + d157fcb + 4444c37 + 192d20c + 811122b + 3a2cf9b + eb2029b + 7a6edab + 0a5d2db commit 22e9606

File tree

15 files changed

+20
-20
lines changed

15 files changed

+20
-20
lines changed

src/Helper/HtmlElement.php renamed to src/Helper/AbstractHtmlElement.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
2929
* @license http://framework.zend.com/license/new-bsd New BSD License
3030
*/
31-
abstract class HtmlElement extends AbstractHelper
31+
abstract class AbstractHtmlElement extends AbstractHelper
3232
{
3333
/**
3434
* EOL character

src/Helper/FormElement.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
3333
* @license http://framework.zend.com/license/new-bsd New BSD License
3434
*/
35-
abstract class FormElement extends HtmlElement
35+
abstract class FormElement extends AbstractHtmlElement
3636
{
3737
/**
3838
* @var \Zend\Translator\Translator

src/Helper/Gravatar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
3232
* @license http://framework.zend.com/license/new-bsd New BSD License
3333
*/
34-
class Gravatar extends HtmlElement
34+
class Gravatar extends AbstractHtmlElement
3535
{
3636
/**
3737
* URL to gravatar service

src/Helper/HeadLink.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
3434
* @license http://framework.zend.com/license/new-bsd New BSD License
3535
*/
36-
class HeadLink extends Placeholder\Container\Standalone
36+
class HeadLink extends Placeholder\Container\AbstractStandalone
3737
{
3838
/**
3939
* $_validAttributes

src/Helper/HeadMeta.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
3434
* @license http://framework.zend.com/license/new-bsd New BSD License
3535
*/
36-
class HeadMeta extends Placeholder\Container\Standalone
36+
class HeadMeta extends Placeholder\Container\AbstractStandalone
3737
{
3838
/**
3939
* Types of attributes

src/Helper/HeadScript.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
3333
* @license http://framework.zend.com/license/new-bsd New BSD License
3434
*/
35-
class HeadScript extends Placeholder\Container\Standalone
35+
class HeadScript extends Placeholder\Container\AbstractStandalone
3636
{
3737
/**#@+
3838
* Script type contants

src/Helper/HeadStyle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
3333
* @license http://framework.zend.com/license/new-bsd New BSD License
3434
*/
35-
class HeadStyle extends Placeholder\Container\Standalone
35+
class HeadStyle extends Placeholder\Container\AbstractStandalone
3636
{
3737
/**
3838
* Registry key for placeholder

src/Helper/HeadTitle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
3232
* @license http://framework.zend.com/license/new-bsd New BSD License
3333
*/
34-
class HeadTitle extends Placeholder\Container\Standalone
34+
class HeadTitle extends Placeholder\Container\AbstractStandalone
3535
{
3636
/**
3737
* Registry key for placeholder

src/Helper/HtmlFlash.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
2929
* @license http://framework.zend.com/license/new-bsd New BSD License
3030
*/
31-
class HtmlFlash extends HtmlElement
31+
class HtmlFlash extends AbstractHtmlElement
3232
{
3333
/**
3434
* Default file type for a flash applet

src/Helper/HtmlObject.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
3131
* @license http://framework.zend.com/license/new-bsd New BSD License
3232
*/
33-
class HtmlObject extends HtmlElement
33+
class HtmlObject extends AbstractHtmlElement
3434
{
3535
/**
3636
* Output an object set

0 commit comments

Comments
 (0)