Skip to content

Commit 9de2223

Browse files
committed
Published Magento 2 update as of 2/29/2012
- Added jQuery to Magento 2. It has not been made a main library yet, however all new features are developed using jQuery. - Added support for new versions of testing tools - PHPUnit 3.6, PHPMD 1.3.0. Confirmed compatibility with latest PHPCS 1.3.2 and PHPCPD 1.3.5. - Improved legacy tests: -- Refactored Integrity_ClassesTest and Legacy_ClassesTest. -- Implemented a tool for migrating factory names from 1.x to 2.x. The tool scans PHP-code and replaces the most "popular" cases. -- Added tests for "//model" in config.xml files and "//*[@module]" in all xml files. -- Implemented a test that verifies the absence of relocated directories. -- Added a test against the obsolete Varien_Profiler. - Bug fixes: -- Fixed phpdoc for Mage_Core_Model_Design_Package. -- Fixed static code analysis failures related to case-sensitivity. -- Fixed several typos and minor mistakes. -- Fixed integration test's failures due to specifics of xpath library version. - Imported fresh features and bug fixes from Magento 1.x.
1 parent 68bdc66 commit 9de2223

File tree

5,730 files changed

+48625
-15554
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,730 files changed

+48625
-15554
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
/app/etc/local.xml
1515
/app/etc/local.xml.*
1616
/app/etc/modules/XEnterprise_Enabler.xml
17-
/app/locale/en_US_org
1817
/downloader/.cache
1918
/downloader/cache.cfg
2019
/downloader/connect.cfg

app/Mage.php

Lines changed: 43 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Mage
2222
* @package Mage_Core
23-
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
23+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626

@@ -397,7 +397,7 @@ public static function dispatchEvent($name, array $data = array())
397397
*
398398
* @link Mage_Core_Model_Config::getModelInstance
399399
* @param string $modelClass
400-
* @param array $arguments
400+
* @param array|object $arguments
401401
* @return Mage_Core_Model_Abstract
402402
*/
403403
public static function getModel($modelClass = '', $arguments = array())
@@ -497,7 +497,7 @@ public static function helper($name)
497497
}
498498

499499
/**
500-
* Retreive resource helper object
500+
* Retrieve resource helper object
501501
*
502502
* @param string $moduleName
503503
* @return Mage_Core_Model_Resource_Helper_Abstract
@@ -555,7 +555,8 @@ public static function app($code = '', $type = 'store', $options = array())
555555
self::$_app = new Mage_Core_Model_App();
556556
self::setRoot();
557557
self::$_events = new Varien_Event_Collection();
558-
self::$_config = new Mage_Core_Model_Config($options);
558+
self::setIsInstalled($options);
559+
self::setConfigModel($options);
559560

560561
Magento_Profiler::start('self::app::init');
561562
self::$_app->init($code, $type, $options);
@@ -577,7 +578,8 @@ public static function init($code = '', $type = 'store', $options = array(), $mo
577578
try {
578579
self::setRoot();
579580
self::$_app = new Mage_Core_Model_App();
580-
self::$_config = new Mage_Core_Model_Config();
581+
self::setIsInstalled($options);
582+
self::setConfigModel($options);
581583

582584
if (!empty($modules)) {
583585
self::$_app->initSpecified($code, $type, $options, $modules);
@@ -616,7 +618,8 @@ public static function run($code = '', $type = 'store', $options = array())
616618
self::$_app->setResponse($options['response']);
617619
}
618620
self::$_events = new Varien_Event_Collection();
619-
self::$_config = new Mage_Core_Model_Config($options);
621+
self::setIsInstalled($options);
622+
self::setConfigModel($options);
620623
self::$_app->run(array(
621624
'scope_code' => $code,
622625
'scope_type' => $type,
@@ -647,6 +650,40 @@ public static function run($code = '', $type = 'store', $options = array())
647650
}
648651
}
649652

653+
/**
654+
* Set application isInstalled flag based on given options
655+
*
656+
* @param array $options
657+
*/
658+
public static function setIsInstalled($options = array())
659+
{
660+
if (isset($options['is_installed']) && $options['is_installed']) {
661+
self::$_isInstalled = true;
662+
}
663+
}
664+
665+
/**
666+
* Set application Config model
667+
*
668+
* @param array $options
669+
*/
670+
public static function setConfigModel($options = array())
671+
{
672+
if (isset($options['config_model']) && Magento_Autoload::getInstance()->classExists($options['config_model'])) {
673+
$alternativeConfigModelName = $options['config_model'];
674+
unset($options['config_model']);
675+
$alternativeConfigModel = new $alternativeConfigModelName($options);
676+
} else {
677+
$alternativeConfigModel = null;
678+
}
679+
680+
if (!is_null($alternativeConfigModel) && ($alternativeConfigModel instanceof Mage_Core_Model_Config)) {
681+
self::$_config = $alternativeConfigModel;
682+
} else {
683+
self::$_config = new Mage_Core_Model_Config($options);
684+
}
685+
}
686+
650687
/**
651688
* Retrieve application installation flag
652689
*

app/bootstrap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* needs please refer to http://www.magentocommerce.com for more information.
2020
*
2121
* @category Magento
22-
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
22+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
2323
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2424
*/
2525

app/code/community/Phoenix/Moneybookers/Block/Form.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Block_Form extends Mage_Payment_Block_Form

app/code/community/Phoenix/Moneybookers/Block/Info.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Block_Info extends Mage_Payment_Block_Info

app/code/community/Phoenix/Moneybookers/Block/Jsinit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Block_Jsinit extends Mage_Adminhtml_Block_Template

app/code/community/Phoenix/Moneybookers/Block/Payment.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Block_Payment extends Mage_Core_Block_Template

app/code/community/Phoenix/Moneybookers/Block/Placeform.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Block_Placeform extends Mage_Core_Block_Template

app/code/community/Phoenix/Moneybookers/Block/Redirect.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Block_Redirect extends Mage_Core_Block_Template

app/code/community/Phoenix/Moneybookers/Helper/Data.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Helper_Data extends Mage_Payment_Helper_Data

app/code/community/Phoenix/Moneybookers/Model/Abstract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
abstract class Phoenix_Moneybookers_Model_Abstract extends Mage_Payment_Model_Method_Abstract

app/code/community/Phoenix/Moneybookers/Model/Acc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_Acc extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/Model/Csi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_Csi extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/Model/Did.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_Did extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/Model/Dnk.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_Dnk extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/Model/Ebt.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_Ebt extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/Model/Ent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_Ent extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/Model/Event.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626

app/code/community/Phoenix/Moneybookers/Model/Gcb.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_Gcb extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/Model/Gir.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_Gir extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/Model/Idl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_Idl extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/Model/Lsr.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_Lsr extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/Model/Mae.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_Mae extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/Model/Npy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_Npy extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/Model/Obt.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_Obt extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/Model/Pli.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_Pli extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/Model/Psp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_Psp extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/Model/Pwy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_Pwy extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/Model/Sft.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_Sft extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/Model/So2.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_So2 extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/Model/Wlt.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_Model_Wlt extends Phoenix_Moneybookers_Model_Abstract

app/code/community/Phoenix/Moneybookers/controllers/MoneybookersController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_MoneybookersController extends Mage_Adminhtml_Controller_Action

app/code/community/Phoenix/Moneybookers/controllers/ProcessingController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Phoenix
2222
* @package Phoenix_Moneybookers
23-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
23+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2424
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2525
*/
2626
class Phoenix_Moneybookers_ProcessingController extends Mage_Core_Controller_Front_Action

app/code/community/Phoenix/Moneybookers/etc/adminhtml.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* @category Phoenix
2323
* @package Phoenix_Moneybookers
24-
* @copyright Copyright (c) 2011 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
24+
* @copyright Copyright (c) 2012 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
2525
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
2626
*/
2727
-->

0 commit comments

Comments
 (0)