Version Notes
1.7.0.0
Download this release
Release Info
| Developer | Magento Core Team |
| Extension | Mage_Centinel |
| Version | 1.7.0.0 |
| Comparing to | |
| See all releases | |
Code changes from version 1.6.1.0 to 1.7.0.0
- app/code/core/Mage/Centinel/Block/Adminhtml/Validation.php +6 -2
- app/code/core/Mage/Centinel/Block/Adminhtml/Validation/Form.php +1 -1
- app/code/core/Mage/Centinel/Block/Authentication.php +1 -1
- app/code/core/Mage/Centinel/Block/Authentication/Complete.php +1 -1
- app/code/core/Mage/Centinel/Block/Authentication/Start.php +1 -1
- app/code/core/Mage/Centinel/Block/Logo.php +1 -1
- app/code/core/Mage/Centinel/Helper/Data.php +1 -1
- app/code/core/Mage/Centinel/Model/Api.php +1 -1
- app/code/core/Mage/Centinel/Model/Config.php +1 -1
- app/code/core/Mage/Centinel/Model/Observer.php +1 -1
- app/code/core/Mage/Centinel/Model/Service.php +1 -1
- app/code/core/Mage/Centinel/Model/Session.php +1 -1
- app/code/core/Mage/Centinel/Model/State/Jcb.php +1 -1
- app/code/core/Mage/Centinel/Model/State/Mastercard.php +1 -1
- app/code/core/Mage/Centinel/Model/State/Visa.php +1 -1
- app/code/core/Mage/Centinel/Model/StateAbstract.php +1 -1
- app/code/core/Mage/Centinel/controllers/Adminhtml/Centinel/IndexController.php +1 -1
- app/code/core/Mage/Centinel/controllers/IndexController.php +1 -1
- app/code/core/Mage/Centinel/etc/config.xml +1 -1
- app/code/core/Mage/Centinel/etc/system.xml +1 -1
- app/design/adminhtml/default/default/layout/centinel.xml +1 -1
- app/design/adminhtml/default/default/template/centinel/authentication/complete.phtml +1 -1
- app/design/adminhtml/default/default/template/centinel/authentication/start.phtml +1 -1
- app/design/adminhtml/default/default/template/centinel/validation/form.phtml +2 -2
- app/design/frontend/base/default/layout/centinel.xml +1 -1
- app/design/frontend/base/default/template/centinel/authentication.phtml +1 -1
- app/design/frontend/base/default/template/centinel/authentication/complete.phtml +1 -1
- app/design/frontend/base/default/template/centinel/authentication/start.phtml +1 -1
- app/design/frontend/base/default/template/centinel/logo.phtml +1 -1
- app/etc/modules/Mage_Centinel.xml +1 -1
- js/mage/adminhtml/sales/centinel.js +1 -1
- package.xml +6 -6
app/code/core/Mage/Centinel/Block/Adminhtml/Validation.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
|
@@ -66,7 +66,11 @@ class Mage_Centinel_Block_Adminhtml_Validation extends Mage_Adminhtml_Block_Sale
|
|
| 66 |
protected function _toHtml()
|
| 67 |
{
|
| 68 |
$payment = $this->getQuote()->getPayment();
|
| 69 |
-
if (!$payment->getMethod()
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
return '';
|
| 71 |
}
|
| 72 |
return parent::_toHtml();
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
| 66 |
protected function _toHtml()
|
| 67 |
{
|
| 68 |
$payment = $this->getQuote()->getPayment();
|
| 69 |
+
if (!$payment->getMethod()
|
| 70 |
+
|| !$payment->getMethodInstance()
|
| 71 |
+
|| $payment->getMethodInstance()->getIsDummy()
|
| 72 |
+
|| !$payment->getMethodInstance()->getIsCentinelValidationEnabled())
|
| 73 |
+
{
|
| 74 |
return '';
|
| 75 |
}
|
| 76 |
return parent::_toHtml();
|
app/code/core/Mage/Centinel/Block/Adminhtml/Validation/Form.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
app/code/core/Mage/Centinel/Block/Authentication.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
app/code/core/Mage/Centinel/Block/Authentication/Complete.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
app/code/core/Mage/Centinel/Block/Authentication/Start.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
app/code/core/Mage/Centinel/Block/Logo.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
app/code/core/Mage/Centinel/Helper/Data.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
app/code/core/Mage/Centinel/Model/Api.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
app/code/core/Mage/Centinel/Model/Config.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
app/code/core/Mage/Centinel/Model/Observer.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
app/code/core/Mage/Centinel/Model/Service.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
app/code/core/Mage/Centinel/Model/Session.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
app/code/core/Mage/Centinel/Model/State/Jcb.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
app/code/core/Mage/Centinel/Model/State/Mastercard.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
app/code/core/Mage/Centinel/Model/State/Visa.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
app/code/core/Mage/Centinel/Model/StateAbstract.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
app/code/core/Mage/Centinel/controllers/Adminhtml/Centinel/IndexController.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
app/code/core/Mage/Centinel/controllers/IndexController.php
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
| 20 |
*
|
| 21 |
* @category Mage
|
| 22 |
* @package Mage_Centinel
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 25 |
*/
|
| 26 |
|
app/code/core/Mage/Centinel/etc/config.xml
CHANGED
|
@@ -21,7 +21,7 @@
|
|
| 21 |
*
|
| 22 |
* @category Mage
|
| 23 |
* @package Mage_Centinel
|
| 24 |
-
* @copyright Copyright (c)
|
| 25 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
| 26 |
*/
|
| 27 |
-->
|
| 21 |
*
|
| 22 |
* @category Mage
|
| 23 |
* @package Mage_Centinel
|
| 24 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 25 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
| 26 |
*/
|
| 27 |
-->
|
app/code/core/Mage/Centinel/etc/system.xml
CHANGED
|
@@ -21,7 +21,7 @@
|
|
| 21 |
*
|
| 22 |
* @category Mage
|
| 23 |
* @package Mage_Centinel
|
| 24 |
-
* @copyright Copyright (c)
|
| 25 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
| 26 |
*/
|
| 27 |
-->
|
| 21 |
*
|
| 22 |
* @category Mage
|
| 23 |
* @package Mage_Centinel
|
| 24 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 25 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
| 26 |
*/
|
| 27 |
-->
|
app/design/adminhtml/default/default/layout/centinel.xml
CHANGED
|
@@ -21,7 +21,7 @@
|
|
| 21 |
*
|
| 22 |
* @category design
|
| 23 |
* @package default_default
|
| 24 |
-
* @copyright Copyright (c)
|
| 25 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
| 26 |
*/
|
| 27 |
|
| 21 |
*
|
| 22 |
* @category design
|
| 23 |
* @package default_default
|
| 24 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 25 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
| 26 |
*/
|
| 27 |
|
app/design/adminhtml/default/default/template/centinel/authentication/complete.phtml
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category design
|
| 22 |
* @package default_default
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
| 25 |
*/
|
| 26 |
?>
|
| 20 |
*
|
| 21 |
* @category design
|
| 22 |
* @package default_default
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
| 25 |
*/
|
| 26 |
?>
|
app/design/adminhtml/default/default/template/centinel/authentication/start.phtml
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category design
|
| 22 |
* @package default_default
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
| 25 |
*/
|
| 26 |
?>
|
| 20 |
*
|
| 21 |
* @category design
|
| 22 |
* @package default_default
|
| 23 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
| 24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
| 25 |
*/
|
| 26 |
?>
|
app/design/adminhtml/default/default/template/centinel/validation/form.phtml
CHANGED
|
@@ -20,7 +20,7 @@
|
|
| 20 |
*
|
| 21 |
* @category design
|
| 22 |
* @package default_default
|
| 23 |
-
* @copyright Copyright (c)
|
| 24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
| 25 |
*/
|
| 26 |
?>
|
|
@@ -29,7 +29,7 @@
|
|
| 29 |
<iframe frameborder="0" border="0" id="<?php echo $this->getContainerId() ?>" src="" style="display:none;"></iframe>
|
| 30 |
</div>
|
| 31 |
</div>
|
| 32 |
-
<button onclick="cardValidator.validate()" class="scalable" type="button"><span><?php echo $this->__('Start/Reset Validation...')?></span></button>
|
| 33 |
<script type="text/javascript">
|
| 34 |
//<