Skip to content

Commit

Permalink
Update of plugin description
Browse files Browse the repository at this point in the history
  • Loading branch information
Timon Rönisch committed Mar 23, 2016
1 parent 76115b8 commit 0ff18cd
Show file tree
Hide file tree
Showing 85 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/code/community/Wirecard/CheckoutPage/Helper/Data.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
class Wirecard_CheckoutPage_Helper_Data extends Mage_Payment_Helper_Data
{

protected $_pluginVersion = '4.0.2';
protected $_pluginVersion = '4.0.3';
protected $_pluginName = 'Wirecard/CheckoutPage';

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ abstract class Wirecard_CheckoutPage_Model_Abstract extends Mage_Payment_Model_M
protected $_defaultLocale = 'en';

protected $_order;
protected $_pluginVersion = '4.0.2';
protected $_pluginVersion = '4.0.3';
protected $_pluginName = 'Wirecard/CheckoutPage';

protected $_formBlockType = 'wirecard_checkoutpage/form';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,11 @@ public function autoload($class)
{
// rewrite class filename, avoid conflicts with installed old plugin, which resides under WirecardCEE
if (preg_match('/^WirecardCEE_/', $class)) {
$class = str_replace('WirecardCEE', 'Wirecard', $class);
if(defined('COMPILER_INCLUDE_PATH')) {
$class = str_replace('WirecardCEE', 'Wirecard_CheckoutPage', $class);
$classFile = COMPILER_INCLUDE_PATH . DIRECTORY_SEPARATOR . $class . '.php';
} else {
$class = str_replace('WirecardCEE', 'Wirecard' . DIRECTORY_SEPARATOR . 'CheckoutPage', $class);
$classFile = str_replace(' ', DIRECTORY_SEPARATOR, ucwords(str_replace('_', ' ', $class))) . '.php';
}
include $classFile;
Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Wirecard/CheckoutPage/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<config>
<modules>
<wirecard_checkoutpage>
<version>4.0.2</version>
<version>4.0.3</version>
</wirecard_checkoutpage>
</modules>
<global>
Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Wirecard/CheckoutPage/etc/system.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<comment>
<![CDATA[
<div style="padding:10px;margin-bottom:7px;">
<img src="/skin/adminhtml/default/default/images/wirecard/wirecard-logo.png" alt="Wirecard CEE" /><br /><h3>Wirecard CEE - Your Full Service Payment Provider - Comprehensive solutions from one single source</h3>Wirecard AG is one of the world's leading providers of outsourcing and white label solutions for electronic payment transactions.<br /><br /> As independent provider of payment solutions, we accompany our customers along the entire business development. Our payment solutions are perfectly tailored to suit e-Commerce requirements and have made us Austria's leading payment service provider. Customization, competence, and commitment. <br /><br /> <a href="https://www.wirecard.at/" target="_blank">www.wirecard.at</a>
<img src="/skin/adminhtml/default/default/images/wirecard/wirecard-page-logo.png" alt="Wirecard" /><br /><h3>Your Full Service Payment Provider - Comprehensive solutions from one single source</h3>Wirecard is one of the world's leading providers of outsourcing and white label solutions for electronic payment transactions.<br /><br /> As independent provider of payment solutions, we accompany our customers along the entire business development. Our payment solutions are perfectly tailored to suit e-Commerce requirements and have made us Austria's leading payment service provider. Customization, competence, and commitment. <br /><br /> <a href="https://www.wirecard.at/" target="_blank">www.wirecard.at</a>
</div><div style="clear:both;"></div>
]]>
</comment>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class WirecardCEE_QPay_Module extends WirecardCEE_Stdlib_Module_ModuleAbstract i
* @return Array
*/
public static final function getConfig() {
return include Mage::getBaseDir('code') . '/local/Wirecard/QPay/Config/user.config.php';
return include Mage::getBaseDir('code') . '/local/Wirecard/CheckoutPage/QPay/Config/user.config.php';
}

/**
Expand All @@ -34,6 +34,6 @@ public static final function getConfig() {
* @return Array
*/
public static final function getClientConfig() {
return include Mage::getBaseDir('code') . '/local/Wirecard/QPay/Config/client.config.php';
return include Mage::getBaseDir('code') . '/local/Wirecard/CheckoutPage/QPay/Config/client.config.php';
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ class WirecardCEE_Stdlib_Module extends WirecardCEE_Stdlib_Module_ModuleAbstract
* @return Array
*/
public static final function getClientConfig() {
return include Mage::getBaseDir('code') . '/local/Wirecard/Stdlib/Config/client.config.php';
return include Mage::getBaseDir('code') . '/local/Wirecard/CheckoutPage/Stdlib/Config/client.config.php';
}
}

0 comments on commit 0ff18cd

Please sign in to comment.