Version Notes
Supports all versions of Magento
Download this release
Release Info
| Developer | Magento Core Team |
| Extension | Signifyd_Connect |
| Version | 3.4.7 |
| Comparing to | |
| See all releases | |
Code changes from version 3.4.6 to 3.4.7
- app/code/community/Signifyd/Connect/controllers/ConnectController.php +32 -18
- app/code/community/Signifyd/Connect/etc/config.xml +1 -1
- app/code/community/Signifyd/Connect/etc/system.xml +23 -23
- app/code/community/Signifyd/Connect/sql/signifyd_connect_setup/{mysql4-install-3.5.0.php → mysql4-install-3.4.5.php} +0 -0
- app/code/community/Signifyd/Connect/sql/signifyd_connect_setup/mysql4-upgrade-3.4.5-3.4.6.php +8 -0
- package.xml +4 -4
app/code/community/Signifyd/Connect/controllers/ConnectController.php
CHANGED
|
@@ -5,6 +5,7 @@ class Signifyd_Connect_ConnectController extends Mage_Core_Controller_Front_Acti
|
|
| 5 |
public $_request = array();
|
| 6 |
public $_topic = false;
|
| 7 |
public $_order = false;
|
|
|
|
| 8 |
public $_case = false;
|
| 9 |
|
| 10 |
public function getApiKey()
|
|
@@ -14,17 +15,22 @@ class Signifyd_Connect_ConnectController extends Mage_Core_Controller_Front_Acti
|
|
| 14 |
|
| 15 |
public function holdThreshold()
|
| 16 |
{
|
| 17 |
-
return (int)Mage::getStoreConfig('signifyd_connect/advanced/hold_orders_threshold');
|
| 18 |
}
|
| 19 |
|
| 20 |
public function canHold()
|
| 21 |
{
|
| 22 |
-
return Mage::getStoreConfig('signifyd_connect/advanced/hold_orders');
|
| 23 |
}
|
| 24 |
|
| 25 |
public function canInvoice()
|
| 26 |
{
|
| 27 |
-
return Mage::getStoreConfig('signifyd_connect/advanced/invoice_orders');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
}
|
| 29 |
|
| 30 |
public function enabled()
|
|
@@ -35,6 +41,12 @@ class Signifyd_Connect_ConnectController extends Mage_Core_Controller_Front_Acti
|
|
| 35 |
return $enabled && $retrieve_scores;
|
| 36 |
}
|
| 37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
public function logErrors()
|
| 39 |
{
|
| 40 |
return Mage::getStoreConfig('signifyd_connect/log/error');
|
|
@@ -143,6 +155,12 @@ class Signifyd_Connect_ConnectController extends Mage_Core_Controller_Front_Acti
|
|
| 143 |
|
| 144 |
$this->_case = $this->initCase($this->_request['orderId']);
|
| 145 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 146 |
if (!$this->_case && $this->logRequest()) {
|
| 147 |
Mage::log('No matching case was found for this request. order_increment: ' . $this->_request['orderId'], null, 'signifyd_connect.log');
|
| 148 |
}
|
|
@@ -150,7 +168,7 @@ class Signifyd_Connect_ConnectController extends Mage_Core_Controller_Front_Acti
|
|
| 150 |
|
| 151 |
public function holdOrder($order)
|
| 152 |
{
|
| 153 |
-
if ($order->canHold() && $this->canHold()) {
|
| 154 |
$order->hold();
|
| 155 |
$order->save();
|
| 156 |
|
|
@@ -160,14 +178,9 @@ class Signifyd_Connect_ConnectController extends Mage_Core_Controller_Front_Acti
|
|
| 160 |
}
|
| 161 |
}
|
| 162 |
|
| 163 |
-
public function notifyCustomer()
|
| 164 |
-
{
|
| 165 |
-
return Mage::getStoreConfig('signifyd_connect/advanced/invoice_orders_notify');
|
| 166 |
-
}
|
| 167 |
-
|
| 168 |
public function invoiceOrder($order)
|
| 169 |
{
|
| 170 |
-
if ($order->canInvoice() && $this->canInvoice()) {
|
| 171 |
$items = array();
|
| 172 |
foreach ($order->getAllItems() as $item) {
|
| 173 |
$items[$item->getId()] = $item->getQtyOrdered();
|
|
@@ -190,10 +203,10 @@ class Signifyd_Connect_ConnectController extends Mage_Core_Controller_Front_Acti
|
|
| 190 |
public function processAdditional($case, $original_status=false)
|
| 191 |
{
|
| 192 |
if ($this->canHold() || $this->canInvoice()) {
|
| 193 |
-
$order =
|
| 194 |
$held = false;
|
| 195 |
|
| 196 |
-
if ($this->canHold()) {
|
| 197 |
$threshold = $this->holdThreshold();
|
| 198 |
|
| 199 |
if (!$original_status || $original_status == 'PENDING') {
|
|
@@ -224,7 +237,7 @@ class Signifyd_Connect_ConnectController extends Mage_Core_Controller_Front_Acti
|
|
| 224 |
}
|
| 225 |
}
|
| 226 |
|
| 227 |
-
if ($this->canInvoice() && !$held && !$original_status) {
|
| 228 |
$this->invoiceOrder($order);
|
| 229 |
}
|
| 230 |
}
|
|
@@ -312,11 +325,6 @@ class Signifyd_Connect_ConnectController extends Mage_Core_Controller_Front_Acti
|
|
| 312 |
$this->processAdditional($case, $original_status);
|
| 313 |
}
|
| 314 |
|
| 315 |
-
public function getUrl($code)
|
| 316 |
-
{
|
| 317 |
-
return Mage::getStoreConfig('signifyd_connect/settings/url') . '/cases/' . $code;
|
| 318 |
-
}
|
| 319 |
-
|
| 320 |
public function caseLookup()
|
| 321 |
{
|
| 322 |
$result = false;
|
|
@@ -378,6 +386,12 @@ class Signifyd_Connect_ConnectController extends Mage_Core_Controller_Front_Acti
|
|
| 378 |
*/
|
| 379 |
}
|
| 380 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 381 |
if ($this->_case) {
|
| 382 |
$lookup = $this->caseLookup();
|
| 383 |
|
| 5 |
public $_request = array();
|
| 6 |
public $_topic = false;
|
| 7 |
public $_order = false;
|
| 8 |
+
public $_store_id = null;
|
| 9 |
public $_case = false;
|
| 10 |
|
| 11 |
public function getApiKey()
|
| 15 |
|
| 16 |
public function holdThreshold()
|
| 17 |
{
|
| 18 |
+
return (int)Mage::getStoreConfig('signifyd_connect/advanced/hold_orders_threshold', $this->_store_id);
|
| 19 |
}
|
| 20 |
|
| 21 |
public function canHold()
|
| 22 |
{
|
| 23 |
+
return Mage::getStoreConfig('signifyd_connect/advanced/hold_orders', $this->_store_id);
|
| 24 |
}
|
| 25 |
|
| 26 |
public function canInvoice()
|
| 27 |
{
|
| 28 |
+
return Mage::getStoreConfig('signifyd_connect/advanced/invoice_orders', $this->_store_id);
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
public function notifyCustomer()
|
| 32 |
+
{
|
| 33 |
+
return Mage::getStoreConfig('signifyd_connect/advanced/invoice_orders_notify', $this->_store_id);
|
| 34 |
}
|
| 35 |
|
| 36 |
public function enabled()
|
| 41 |
return $enabled && $retrieve_scores;
|
| 42 |
}
|
| 43 |
|
| 44 |
+
|
| 45 |
+
public function getUrl($code)
|
| 46 |
+
{
|
| 47 |
+
return Mage::getStoreConfig('signifyd_connect/settings/url', $this->_store_id) . '/cases/' . $code;
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
public function logErrors()
|
| 51 |
{
|
| 52 |
return Mage::getStoreConfig('signifyd_connect/log/error');
|
| 155 |
|
| 156 |
$this->_case = $this->initCase($this->_request['orderId']);
|
| 157 |
|
| 158 |
+
$this->_order = Mage::getModel('sales/order')->loadByIncrementId($this->_request['orderId']);
|
| 159 |
+
|
| 160 |
+
if ($this->_order && $this->_order->getId()) {
|
| 161 |
+
$this->_store_id = $this->_order->getStoreId();
|
| 162 |
+
}
|
| 163 |
+
|
| 164 |
if (!$this->_case && $this->logRequest()) {
|
| 165 |
Mage::log('No matching case was found for this request. order_increment: ' . $this->_request['orderId'], null, 'signifyd_connect.log');
|
| 166 |
}
|
| 168 |
|
| 169 |
public function holdOrder($order)
|
| 170 |
{
|
| 171 |
+
if ($order && $order->getId() && $order->canHold() && $this->canHold()) {
|
| 172 |
$order->hold();
|
| 173 |
$order->save();
|
| 174 |
|
| 178 |
}
|
| 179 |
}
|
| 180 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 181 |
public function invoiceOrder($order)
|
| 182 |
{
|
| 183 |
+
if ($order && $order->getId() && $order->canInvoice() && $this->canInvoice()) {
|
| 184 |
$items = array();
|
| 185 |
foreach ($order->getAllItems() as $item) {
|
| 186 |
$items[$item->getId()] = $item->getQtyOrdered();
|
| 203 |
public function processAdditional($case, $original_status=false)
|
| 204 |
{
|
| 205 |
if ($this->canHold() || $this->canInvoice()) {
|
| 206 |
+
$order = $this->_order;
|
| 207 |
$held = false;
|
| 208 |
|
| 209 |
+
if ($order && $order->getId() && $this->canHold()) {
|
| 210 |
$threshold = $this->holdThreshold();
|
| 211 |
|
| 212 |
if (!$original_status || $original_status == 'PENDING') {
|
| 237 |
}
|
| 238 |
}
|
| 239 |
|
| 240 |
+
if ($order && $order->getId() && $this->canInvoice() && !$held && !$original_status) {
|
| 241 |
$this->invoiceOrder($order);
|
| 242 |
}
|
| 243 |
}
|
| 325 |
$this->processAdditional($case, $original_status);
|
| 326 |
}
|
| 327 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 328 |
public function caseLookup()
|
| 329 |
{
|
| 330 |
$result = false;
|
| 386 |
*/
|
| 387 |
}
|
| 388 |
|
| 389 |
+
$this->_order = Mage::getModel('sales/order')->loadByIncrementId($this->_request['orderId']);
|
| 390 |
+
|
| 391 |
+
if ($this->_order && $this->_order->getId()) {
|
| 392 |
+
$this->_store_id = $this->_order->getStoreId();
|
| 393 |
+
}
|
| 394 |
+
|
| 395 |
if ($this->_case) {
|
| 396 |
$lookup = $this->caseLookup();
|
| 397 |
|
app/code/community/Signifyd/Connect/etc/config.xml
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
<config>
|
| 4 |
<modules>
|
| 5 |
<Signifyd_Connect>
|
| 6 |
-
<version>3.4.
|
| 7 |
</Signifyd_Connect>
|
| 8 |
</modules>
|
| 9 |
<global>
|
| 3 |
<config>
|
| 4 |
<modules>
|
| 5 |
<Signifyd_Connect>
|
| 6 |
+
<version>3.4.7</version>
|
| 7 |
</Signifyd_Connect>
|
| 8 |
</modules>
|
| 9 |
<global>
|
app/code/community/Signifyd/Connect/etc/system.xml
CHANGED
|
@@ -30,8 +30,8 @@
|
|
| 30 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 31 |
<sort_order>10</sort_order>
|
| 32 |
<show_in_default>1</show_in_default>
|
| 33 |
-
<show_in_website>
|
| 34 |
-
<show_in_store>
|
| 35 |
<comment><![CDATA[This enables or disables the Signifyd extension]]></comment>
|
| 36 |
</enabled>
|
| 37 |
<key translate="label">
|
|
@@ -39,8 +39,8 @@
|
|
| 39 |
<frontend_type>text</frontend_type>
|
| 40 |
<sort_order>20</sort_order>
|
| 41 |
<show_in_default>1</show_in_default>
|
| 42 |
-
<show_in_website>
|
| 43 |
-
<show_in_store>
|
| 44 |
<comment><![CDATA[You will find this in <a href="http://signifyd.com/settings/teams">http://signifyd.com/settings/teams</a> after you create a Signifyd account]]></comment>
|
| 45 |
</key>
|
| 46 |
<url translate="label">
|
|
@@ -48,8 +48,8 @@
|
|
| 48 |
<frontend_type>text</frontend_type>
|
| 49 |
<sort_order>30</sort_order>
|
| 50 |
<show_in_default>1</show_in_default>
|
| 51 |
-
<show_in_website>
|
| 52 |
-
<show_in_store>
|
| 53 |
<comment><![CDATA[This is set by default. Don’t change unless asked to do so.]]></comment>
|
| 54 |
</url>
|
| 55 |
</fields>
|
|
@@ -68,8 +68,8 @@
|
|
| 68 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 69 |
<sort_order>50</sort_order>
|
| 70 |
<show_in_default>1</show_in_default>
|
| 71 |
-
<show_in_website>
|
| 72 |
-
<show_in_store>
|
| 73 |
<comment><model>signifyd_connect/link</model></comment>
|
| 74 |
</retrieve_score>
|
| 75 |
<show_scores translate="label">
|
|
@@ -78,8 +78,8 @@
|
|
| 78 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 79 |
<sort_order>55</sort_order>
|
| 80 |
<show_in_default>1</show_in_default>
|
| 81 |
-
<show_in_website>
|
| 82 |
-
<show_in_store>
|
| 83 |
<depends><retrieve_score>1</retrieve_score></depends>
|
| 84 |
<comment><![CDATA[Your scores will show in the Magento Order Grid once enabled]]></comment>
|
| 85 |
</show_scores>
|
|
@@ -109,20 +109,20 @@
|
|
| 109 |
<frontend_type>select</frontend_type>
|
| 110 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 111 |
<sort_order>90</sort_order>
|
| 112 |
-
<show_in_default>
|
| 113 |
-
<show_in_website>
|
| 114 |
-
<show_in_store>
|
| 115 |
<depends><retrieve_score>1</retrieve_score></depends>
|
| 116 |
-
<comment><![CDATA[
|
| 117 |
</invoice_orders>
|
| 118 |
<invoice_orders_notify translate="label">
|
| 119 |
<label>Notify customer</label>
|
| 120 |
<frontend_type>select</frontend_type>
|
| 121 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 122 |
<sort_order>95</sort_order>
|
| 123 |
-
<show_in_default>
|
| 124 |
-
<show_in_website>
|
| 125 |
-
<show_in_store>
|
| 126 |
<comment><![CDATA[Send email notification to customers after invoicing orders]]></comment>
|
| 127 |
<depends><invoice_orders>1</invoice_orders></depends>
|
| 128 |
</invoice_orders_notify>
|
|
@@ -142,8 +142,8 @@
|
|
| 142 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 143 |
<sort_order>1</sort_order>
|
| 144 |
<show_in_default>1</show_in_default>
|
| 145 |
-
<show_in_website>
|
| 146 |
-
<show_in_store>
|
| 147 |
</request>
|
| 148 |
<response>
|
| 149 |
<label>Log responses</label>
|
|
@@ -151,8 +151,8 @@
|
|
| 151 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 152 |
<sort_order>2</sort_order>
|
| 153 |
<show_in_default>1</show_in_default>
|
| 154 |
-
<show_in_website>
|
| 155 |
-
<show_in_store>
|
| 156 |
</response>
|
| 157 |
<error>
|
| 158 |
<label>Log errors</label>
|
|
@@ -160,8 +160,8 @@
|
|
| 160 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 161 |
<sort_order>3</sort_order>
|
| 162 |
<show_in_default>1</show_in_default>
|
| 163 |
-
<show_in_website>
|
| 164 |
-
<show_in_store>
|
| 165 |
</error>
|
| 166 |
</fields>
|
| 167 |
</log>
|
| 30 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 31 |
<sort_order>10</sort_order>
|
| 32 |
<show_in_default>1</show_in_default>
|
| 33 |
+
<show_in_website>0</show_in_website>
|
| 34 |
+
<show_in_store>0</show_in_store>
|
| 35 |
<comment><![CDATA[This enables or disables the Signifyd extension]]></comment>
|
| 36 |
</enabled>
|
| 37 |
<key translate="label">
|
| 39 |
<frontend_type>text</frontend_type>
|
| 40 |
<sort_order>20</sort_order>
|
| 41 |
<show_in_default>1</show_in_default>
|
| 42 |
+
<show_in_website>0</show_in_website>
|
| 43 |
+
<show_in_store>0</show_in_store>
|
| 44 |
<comment><![CDATA[You will find this in <a href="http://signifyd.com/settings/teams">http://signifyd.com/settings/teams</a> after you create a Signifyd account]]></comment>
|
| 45 |
</key>
|
| 46 |
<url translate="label">
|
| 48 |
<frontend_type>text</frontend_type>
|
| 49 |
<sort_order>30</sort_order>
|
| 50 |
<show_in_default>1</show_in_default>
|
| 51 |
+
<show_in_website>0</show_in_website>
|
| 52 |
+
<show_in_store>0</show_in_store>
|
| 53 |
<comment><![CDATA[This is set by default. Don’t change unless asked to do so.]]></comment>
|
| 54 |
</url>
|
| 55 |
</fields>
|
| 68 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 69 |
<sort_order>50</sort_order>
|
| 70 |
<show_in_default>1</show_in_default>
|
| 71 |
+
<show_in_website>0</show_in_website>
|
| 72 |
+
<show_in_store>0</show_in_store>
|
| 73 |
<comment><model>signifyd_connect/link</model></comment>
|
| 74 |
</retrieve_score>
|
| 75 |
<show_scores translate="label">
|
| 78 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 79 |
<sort_order>55</sort_order>
|
| 80 |
<show_in_default>1</show_in_default>
|
| 81 |
+
<show_in_website>0</show_in_website>
|
| 82 |
+
<show_in_store>0</show_in_store>
|
| 83 |
<depends><retrieve_score>1</retrieve_score></depends>
|
| 84 |
<comment><![CDATA[Your scores will show in the Magento Order Grid once enabled]]></comment>
|
| 85 |
</show_scores>
|
| 109 |
<frontend_type>select</frontend_type>
|
| 110 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 111 |
<sort_order>90</sort_order>
|
| 112 |
+
<show_in_default>0</show_in_default>
|
| 113 |
+
<show_in_website>0</show_in_website>
|
| 114 |
+
<show_in_store>0</show_in_store>
|
| 115 |
<depends><retrieve_score>1</retrieve_score></depends>
|
| 116 |
+
<comment><![CDATA[Attempt to invoice (and capture) orders after receiving a Signifyd score where the order has not been held. If the order cannot be invoiced, no action will be taken. This will invoice the whole order, so is not suitable for workflows where partial invoices are needed.]]></comment>
|
| 117 |
</invoice_orders>
|
| 118 |
<invoice_orders_notify translate="label">
|
| 119 |
<label>Notify customer</label>
|
| 120 |
<frontend_type>select</frontend_type>
|
| 121 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 122 |
<sort_order>95</sort_order>
|
| 123 |
+
<show_in_default>0</show_in_default>
|
| 124 |
+
<show_in_website>0</show_in_website>
|
| 125 |
+
<show_in_store>0</show_in_store>
|
| 126 |
<comment><![CDATA[Send email notification to customers after invoicing orders]]></comment>
|
| 127 |
<depends><invoice_orders>1</invoice_orders></depends>
|
| 128 |
</invoice_orders_notify>
|
| 142 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 143 |
<sort_order>1</sort_order>
|
| 144 |
<show_in_default>1</show_in_default>
|
| 145 |
+
<show_in_website>0</show_in_website>
|
| 146 |
+
<show_in_store>0</show_in_store>
|
| 147 |
</request>
|
| 148 |
<response>
|
| 149 |
<label>Log responses</label>
|
| 151 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 152 |
<sort_order>2</sort_order>
|
| 153 |
<show_in_default>1</show_in_default>
|
| 154 |
+
<show_in_website>0</show_in_website>
|
| 155 |
+
<show_in_store>0</show_in_store>
|
| 156 |
</response>
|
| 157 |
<error>
|
| 158 |
<label>Log errors</label>
|
| 160 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 161 |
<sort_order>3</sort_order>
|
| 162 |
<show_in_default>1</show_in_default>
|
| 163 |
+
<show_in_website>0</show_in_website>
|
| 164 |
+
<show_in_store>0</show_in_store>
|
| 165 |
</error>
|
| 166 |
</fields>
|
| 167 |
</log>
|
app/code/community/Signifyd/Connect/sql/signifyd_connect_setup/{mysql4-install-3.5.0.php → mysql4-install-3.4.5.php}
RENAMED
|
File without changes
|
app/code/community/Signifyd/Connect/sql/signifyd_connect_setup/mysql4-upgrade-3.4.5-3.4.6.php
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
|
| 3 |
+
try {
|
| 4 |
+
$this->startSetup();
|
| 5 |
+
$this->endSetup();
|
| 6 |
+
} catch (Exception $e) {
|
| 7 |
+
Mage::log('Signifyd_Connect upgrade: ' . $e->__toString(), null, 'signifyd_connect.log');
|
| 8 |
+
}
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Signifyd_Connect</name>
|
| 4 |
-
<version>3.4.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -10,9 +10,9 @@
|
|
| 10 |
<description>Supports all versions of Magento</description>
|
| 11 |
<notes>Supports all versions of Magento</notes>
|
| 12 |
<authors><author><name>signifyd</name><user>auto-converted</user><email>manelis@signifyd.com</email></author></authors>
|
| 13 |
-
<date>2014-
|
| 14 |
-
<time>
|
| 15 |
-
<contents><target name="mageetc"><dir name="modules"><file name="Signifyd_Connect.xml" hash="bcd998a24567eba8a20423c40fba2adf"/></dir></target><target name="magecommunity"><dir name="Signifyd"><dir name="Connect"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="fcdcd4cb2933147e4b573b4fb7217992"/></dir><file name="Order.php" hash="e49f869c0aa5fb3ab6b70fb5752049ac"/></dir></dir><file name="Renderer.php" hash="5564e9c6926afbbdade26a6fe746948a"/></dir><dir name="Helper"><file name="Data.php" hash="5037f77184d4f023b7fb12e9e496ace1"/></dir><dir name="Model"><dir name="Resource"><dir name="Case"><file name="Collection.php" hash="b7dac9979a0c81db56294d1548570fc2"/></dir><file name="Case.php" hash="621fb50264bd0cdeba720dee6949a0bf"/></dir><file name="Case.php" hash="92e044f7414eddfe084320b4a2098cee"/><file name="Cron.php" hash="51665978bd2bcf67b493f2a2b450d1b8"/><file name="Link.php" hash="0027fc75ef766aa1f51a004305987937"/><file name="Observer.php" hash="06078c7b13dc1378e2c96c2df949affa"/><file name="Setup.php" hash="e803ffb4b86c7d8ec1d149e665d65877"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SignifydController.php" hash="937fa40bfd59857c738691e0fc6594e7"/></dir><file name="ConnectController.php" hash="
|
| 16 |
<compatible/>
|
| 17 |
<dependencies/>
|
| 18 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Signifyd_Connect</name>
|
| 4 |
+
<version>3.4.7</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL</license>
|
| 7 |
<channel>community</channel>
|
| 10 |
<description>Supports all versions of Magento</description>
|
| 11 |
<notes>Supports all versions of Magento</notes>
|
| 12 |
<authors><author><name>signifyd</name><user>auto-converted</user><email>manelis@signifyd.com</email></author></authors>
|
| 13 |
+
<date>2014-11-04</date>
|
| 14 |
+
<time>05:48:52</time>
|
| 15 |
+
<contents><target name="mageetc"><dir name="modules"><file name="Signifyd_Connect.xml" hash="bcd998a24567eba8a20423c40fba2adf"/></dir></target><target name="magecommunity"><dir name="Signifyd"><dir name="Connect"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="fcdcd4cb2933147e4b573b4fb7217992"/></dir><file name="Order.php" hash="e49f869c0aa5fb3ab6b70fb5752049ac"/></dir></dir><file name="Renderer.php" hash="5564e9c6926afbbdade26a6fe746948a"/></dir><dir name="Helper"><file name="Data.php" hash="5037f77184d4f023b7fb12e9e496ace1"/></dir><dir name="Model"><dir name="Resource"><dir name="Case"><file name="Collection.php" hash="b7dac9979a0c81db56294d1548570fc2"/></dir><file name="Case.php" hash="621fb50264bd0cdeba720dee6949a0bf"/></dir><file name="Case.php" hash="92e044f7414eddfe084320b4a2098cee"/><file name="Cron.php" hash="51665978bd2bcf67b493f2a2b450d1b8"/><file name="Link.php" hash="0027fc75ef766aa1f51a004305987937"/><file name="Observer.php" hash="06078c7b13dc1378e2c96c2df949affa"/><file name="Setup.php" hash="e803ffb4b86c7d8ec1d149e665d65877"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SignifydController.php" hash="937fa40bfd59857c738691e0fc6594e7"/></dir><file name="ConnectController.php" hash="b20c52e95cf188ab68e980086f401474"/></dir><dir name="etc"><file name="adminhtml.xml" hash="8e72a4cdc4039ee12ad5174188b6ef3e"/><file name="config.xml" hash="68266fb9b981ba186e4617ad46af5c09"/><file name="system.xml" hash="cc888c71efbf528ef04af3e4702dadb4"/></dir><dir name="sql"><dir name="signifyd_connect_setup"><file name="mysql4-install-3.1.1.php" hash="7fb2ccaf8352eea26e626ace6de53d80"/><file name="mysql4-install-3.3.0.php" hash="f61d0c018b28ae04d8d14b38556d18ad"/><file name="mysql4-install-3.4.0.php" hash="109cc5ca60974d0c4755dcb0f5ade3e7"/><file name="mysql4-install-3.4.5.php" hash="401b92235c0e534c941a64c60d24b851"/><file name="mysql4-upgrade-3.2.0-3.2.1.php" hash="9e36c608afd6e30e3052334e085eeff4"/><file name="mysql4-upgrade-3.2.1-3.2.2.php" hash="efcc5d46a41e549e508a693f1e77bf44"/><file name="mysql4-upgrade-3.2.2-3.2.3.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.2.3-3.3.0.php" hash="94b907c2cacde5fb9831408ce9a06190"/><file name="mysql4-upgrade-3.3.0-3.4.0.php" hash="6eb18705081483bb8d9c14adcdefd095"/><file name="mysql4-upgrade-3.4.0-3.4.1.php" hash="79f2064f1fa20d646e66aa3e7912d2a0"/><file name="mysql4-upgrade-3.4.1-3.4.2.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.4.2-3.4.3.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.4.3-3.4.4.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.4.4-3.4.5.php" hash="5b7507d6bb97bf44d27b7a89c56924bb"/><file name="mysql4-upgrade-3.4.5-3.4.6.php" hash="3ceb86495f33475774d4fc8727254cfc"/></dir></dir></dir></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
<dependencies/>
|
| 18 |
</package>
|
