InXpress - Version 0.1.5

Version Notes

Start selling internationally. Get bulk discounted DHL Express rates, displayed in real-time to your customers

Download this release

Release Info

Developer Cedcoss
Extension InXpress
Version 0.1.5
Comparing to
See all releases


Code changes from version 0.1.4 to 0.1.5

app/code/local/Cedcoss/Inxpress/Block/Adminhtml/Inxpress.php CHANGED
@@ -11,7 +11,7 @@ class Cedcoss_Inxpress_Block_Adminhtml_Inxpress extends Mage_Adminhtml_Block_Wid
11
 
12
  $this->_addButton('import_csv', array(
13
  'label' => $this->__('Import Csv'),
14
- 'onclick' => "setLocation('{$this->getUrl('inxpress/adminhtml_index/import')}')",
15
  ));
16
  parent::__construct();
17
  $this->_removeButton('add');
11
 
12
  $this->_addButton('import_csv', array(
13
  'label' => $this->__('Import Csv'),
14
+ 'onclick' => "setLocation('{$this->getUrl('adminhtml/adminhtml_index/import')}')",
15
  ));
16
  parent::__construct();
17
  $this->_removeButton('add');
app/code/local/Cedcoss/Inxpress/Model/Carrier/Inxpress.php CHANGED
@@ -6,7 +6,7 @@ class Cedcoss_Inxpress_Model_Carrier_Inxpress extends Mage_Shipping_Model_Carrie
6
 
7
  public function collectRates(Mage_Shipping_Model_Rate_Request $request)
8
  {
9
-
10
  if (!$this->getConfigFlag('active')) {
11
  return false;
12
  }
@@ -100,6 +100,7 @@ class Cedcoss_Inxpress_Model_Carrier_Inxpress extends Mage_Shipping_Model_Carrie
100
  }
101
  }
102
  $price=$this->calcRate(Mage::getStoreConfig('carriers/inxpress/account'),$code,$request->getDestCountryId(),$weight,$final_lbh,$request->getDestPostcode());
 
103
  if($price)
104
  {
105
  $shippingPrice=$price['price'];
@@ -142,9 +143,9 @@ class Cedcoss_Inxpress_Model_Carrier_Inxpress extends Mage_Shipping_Model_Carrie
142
  public function calcRate($account,$code,$country,$weight,$dimension,$zip)
143
  {
144
  $dimension = rtrim($dimension, ';');
145
- $url = Mage::getStoreConfig('carriers/inxpress/gateway_url').'?acc='.$account.'&dst='.$country.'&prd='.$code.'&wgt='.$weight.'&pst='.$zip.'&pcs='.$dimension;
146
-
147
 
 
148
 
149
  $ch = curl_init();
150
  curl_setopt($ch, CURLOPT_URL,$url);
6
 
7
  public function collectRates(Mage_Shipping_Model_Rate_Request $request)
8
  {
9
+
10
  if (!$this->getConfigFlag('active')) {
11
  return false;
12
  }
100
  }
101
  }
102
  $price=$this->calcRate(Mage::getStoreConfig('carriers/inxpress/account'),$code,$request->getDestCountryId(),$weight,$final_lbh,$request->getDestPostcode());
103
+ //print_r($price);die('wkkk');
104
  if($price)
105
  {
106
  $shippingPrice=$price['price'];
143
  public function calcRate($account,$code,$country,$weight,$dimension,$zip)
144
  {
145
  $dimension = rtrim($dimension, ';');
146
+ $url = Mage::getStoreConfig('carriers/inxpress/gateway_url').'http://www.ixpapi.com/ixpapp/rates.php?acc='.$account.'&dst='.$country.'&prd='.$code.'&wgt='.$weight.'&pst='.$zip.'&pcs='.$dimension;
 
147
 
148
+ //echo $url;die;
149
 
150
  $ch = curl_init();
151
  curl_setopt($ch, CURLOPT_URL,$url);
app/code/local/Cedcoss/Inxpress/controllers/Adminhtml/DhlController.php CHANGED
@@ -96,18 +96,18 @@ class Cedcoss_Inxpress_Adminhtml_DhlController extends Mage_Adminhtml_Controller
96
  $inxpress = Mage::getModel('inxpress/dhl');
97
  $inxpress->setData($data)->save();
98
  Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('inxpress')->__('The DHL Varient has been saved.'));
99
- $this->_redirect('inxpress/adminhtml_index/new',array('id'=>$inxpress->getId()));
100
 
101
 
102
  }
103
  }
104
  if($this->getRequest()->getParam('back'))
105
  {
106
- $this->_redirect('inxpress/adminhtml_dhl/new',array('id'=>$inxpress->getId()));
107
  }
108
  else
109
  {
110
- $this->_redirect('inxpress/adminhtml_dhl/index');
111
  }
112
 
113
  }
@@ -119,7 +119,7 @@ class Cedcoss_Inxpress_Adminhtml_DhlController extends Mage_Adminhtml_Controller
119
  $ob=$obj->load($id);
120
  $ob->delete();
121
  Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('inxpress')->__('DHL Varient Deleted Successfully...'));
122
- $this->_redirect('inxpress/adminhtml_dhl/index');
123
 
124
  }
125
  public function massStatusAction()
96
  $inxpress = Mage::getModel('inxpress/dhl');
97
  $inxpress->setData($data)->save();
98
  Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('inxpress')->__('The DHL Varient has been saved.'));
99
+ $this->_redirect('adminhtml/adminhtml_index/new',array('id'=>$inxpress->getId()));
100
 
101
 
102
  }
103
  }
104
  if($this->getRequest()->getParam('back'))
105
  {
106
+ $this->_redirect('adminhtml/adminhtml_dhl/new',array('id'=>$inxpress->getId()));
107
  }
108
  else
109
  {
110
+ $this->_redirect('adminhtml/adminhtml_dhl/index');
111
  }
112
 
113
  }
119
  $ob=$obj->load($id);
120
  $ob->delete();
121
  Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('inxpress')->__('DHL Varient Deleted Successfully...'));
122
+ $this->_redirect('adminhtml/adminhtml_dhl/index');
123
 
124
  }
125
  public function massStatusAction()
app/code/local/Cedcoss/Inxpress/controllers/Adminhtml/IndexController.php CHANGED
@@ -31,7 +31,7 @@ class Cedcoss_Inxpress_Adminhtml_IndexController extends Mage_Adminhtml_Controll
31
  if(!isset($indexes['length'])||!isset($indexes['width'])||!isset($indexes['height'])||!isset($indexes['sku']))
32
  {
33
  Mage::getSingleton('adminhtml/session')->addError(Mage::helper('inxpress')->__('Some required attributes are missing.'));
34
- $this->_redirect('inxpress/adminhtml_index/index');
35
  return;
36
  }
37
  $count=0; $lbh_check=0; $success=0;
@@ -63,7 +63,7 @@ class Cedcoss_Inxpress_Adminhtml_IndexController extends Mage_Adminhtml_Controll
63
  Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('inxpress')->__('Csv Imported Successfully.'));
64
 
65
  }
66
- $this->_redirect('inxpress/adminhtml_index/index');
67
  }
68
  public function editAction()
69
 
@@ -101,18 +101,18 @@ class Cedcoss_Inxpress_Adminhtml_IndexController extends Mage_Adminhtml_Controll
101
  $inxpress = Mage::getModel('inxpress/variant');
102
  $inxpress->setData($data)->save();
103
  Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('inxpress')->__('The variant data has been saved.'));
104
- $this->_redirect('inxpress/adminhtml_index/new',array('id'=>$inxpress->getId()));
105
 
106
 
107
  }
108
  }
109
  if($this->getRequest()->getParam('back'))
110
  {
111
- $this->_redirect('inxpress/adminhtml_index/new',array('id'=>$inxpress->getId()));
112
  }
113
  else
114
  {
115
- $this->_redirect('inxpress/adminhtml_index/index');
116
  }
117
 
118
  }
@@ -124,7 +124,7 @@ class Cedcoss_Inxpress_Adminhtml_IndexController extends Mage_Adminhtml_Controll
124
  $ob=$obj->load($id);
125
  $ob->delete();
126
  Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('inxpress')->__('Product Variant Deleted Successfully...'));
127
- $this->_redirect('inxpress/adminhtml_index/index');
128
 
129
  }
130
  public function massStatusAction()
31
  if(!isset($indexes['length'])||!isset($indexes['width'])||!isset($indexes['height'])||!isset($indexes['sku']))
32
  {
33
  Mage::getSingleton('adminhtml/session')->addError(Mage::helper('inxpress')->__('Some required attributes are missing.'));
34
+ $this->_redirect('adminhtml/adminhtml_index/index');
35
  return;
36
  }
37
  $count=0; $lbh_check=0; $success=0;
63
  Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('inxpress')->__('Csv Imported Successfully.'));
64
 
65
  }
66
+ $this->_redirect('adminhtml/adminhtml_index/index');
67
  }
68
  public function editAction()
69
 
101
  $inxpress = Mage::getModel('inxpress/variant');
102
  $inxpress->setData($data)->save();
103
  Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('inxpress')->__('The variant data has been saved.'));
104
+ $this->_redirect('adminhtml/adminhtml_index/new',array('id'=>$inxpress->getId()));
105
 
106
 
107
  }
108
  }
109
  if($this->getRequest()->getParam('back'))
110
  {
111
+ $this->_redirect('adminhtml/adminhtml_index/new',array('id'=>$inxpress->getId()));
112
  }
113
  else
114
  {
115
+ $this->_redirect('adminhtml/adminhtml_index/index');
116
  }
117
 
118
  }
124
  $ob=$obj->load($id);
125
  $ob->delete();
126
  Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('inxpress')->__('Product Variant Deleted Successfully...'));
127
+ $this->_redirect('adminhtml/adminhtml_index/index');
128
 
129
  }
130
  public function massStatusAction()
app/code/local/Cedcoss/Inxpress/etc/config.xml CHANGED
@@ -19,7 +19,7 @@
19
  </default>
20
  <modules>
21
  <Cedcoss_Inxpress>
22
- <version>0.1.2</version>
23
  </Cedcoss_Inxpress>
24
  </modules>
25
 
@@ -34,6 +34,26 @@
34
  </inxpress>
35
  </routers>
36
  </frontend>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  <adminhtml>
38
  <menu>
39
 
@@ -46,7 +66,7 @@
46
 
47
  <sort_order>0</sort_order>
48
 
49
- <action>inxpress/adminhtml_index/index</action>
50
 
51
  </variants>
52
  <dhl module="inxpress">
@@ -55,7 +75,7 @@
55
 
56
  <sort_order>0</sort_order>
57
 
58
- <action>inxpress/adminhtml_dhl/index</action>
59
 
60
  </dhl>
61
 
@@ -73,6 +93,7 @@
73
  </updates>
74
  </layout>
75
  </adminhtml>
 
76
  <global>
77
  <helpers>
78
 
19
  </default>
20
  <modules>
21
  <Cedcoss_Inxpress>
22
+ <version>0.1.5</version>
23
  </Cedcoss_Inxpress>
24
  </modules>
25
 
34
  </inxpress>
35
  </routers>
36
  </frontend>
37
+ <admin>
38
+ <!-- <routers>
39
+ <inxpress>
40
+ <use>admin</use>
41
+ <args>
42
+ <module>Cedcoss_Inxpress</module>
43
+ <frontName>inxpress</frontName>
44
+ </args>
45
+ </inxpress>
46
+ </routers> -->
47
+ <routers>
48
+ <adminhtml>
49
+ <args>
50
+ <modules>
51
+ <inxpress after="Mage_Adminhtml">Cedcoss_Inxpress</inxpress>
52
+ </modules>
53
+ </args>
54
+ </adminhtml>
55
+ </routers>
56
+ </admin>
57
  <adminhtml>
58
  <menu>
59
 
66
 
67
  <sort_order>0</sort_order>
68
 
69
+ <action>adminhtml/adminhtml_index/index</action>
70
 
71
  </variants>
72
  <dhl module="inxpress">
75
 
76
  <sort_order>0</sort_order>
77
 
78
+ <action>adminhtml/adminhtml_dhl/index</action>
79
 
80
  </dhl>
81
 
93
  </updates>
94
  </layout>
95
  </adminhtml>
96
+
97
  <global>
98
  <helpers>
99
 
app/design/adminhtml/default/default/layout/inxpress.xml CHANGED
@@ -11,7 +11,7 @@
11
  </reference>
12
 
13
  </default>
14
- <inxpress_adminhtml_dhl_variant>
15
 
16
  <reference name="root">
17
  <action method="setTemplate">
@@ -23,5 +23,5 @@
23
  <remove name="footer"/>
24
  <block type="inxpress/adminhtml_variant" name="inxpress" template="inxpress/popup.phtml"/>
25
  </reference>
26
- </inxpress_adminhtml_dhl_variant>
27
  </layout>
11
  </reference>
12
 
13
  </default>
14
+ <adminhtml_adminhtml_dhl_variant>
15
 
16
  <reference name="root">
17
  <action method="setTemplate">
23
  <remove name="footer"/>
24
  <block type="inxpress/adminhtml_variant" name="inxpress" template="inxpress/popup.phtml"/>
25
  </reference>
26
+ </adminhtml_adminhtml_dhl_variant>
27
  </layout>
app/design/adminhtml/default/default/template/inxpress/popup.phtml CHANGED
@@ -2,7 +2,7 @@
2
  <div class="entry-edit-head">
3
  <h4 class="icon-head head-edit-form fieldset-legend"><?php echo Mage::helper('catalog')->__('Manage Options (values of your markup)') ?></h4>
4
  </div>
5
- <form id="variant_form" action="<?php echo Mage::helper('adminhtml')->getUrl('inxpress/adminhtml_dhl/variantsave',array('product'=>$this->getRequest()->getParam('product'),'id'=>$this->getRequest()->getParam('id'))) ?>" method="post">
6
  <input type="hidden" name="form_key" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />
7
  <div class="box">
8
  <div class="hor-scroll">
2
  <div class="entry-edit-head">
3
  <h4 class="icon-head head-edit-form fieldset-legend"><?php echo Mage::helper('catalog')->__('Manage Options (values of your markup)') ?></h4>
4
  </div>
5
+ <form id="variant_form" action="<?php echo Mage::helper('adminhtml')->getUrl('adminhtml/adminhtml_dhl/variantsave',array('product'=>$this->getRequest()->getParam('product'),'id'=>$this->getRequest()->getParam('id'))) ?>" method="post">
6
  <input type="hidden" name="form_key" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />
7
  <div class="box">
8
  <div class="hor-scroll">
app/design/adminhtml/default/default/template/inxpress/productedit.phtml CHANGED
@@ -1,4 +1,6 @@
1
  <?php
 
 
2
  $variant = Mage::getModel('inxpress/variant')->getCollection()->addFieldToFilter('product_id',$this->getRequest()->getParam('id'))->getFirstItem();
3
  /* echo $this->getRequest()->getParam('id');
4
  echo $variant->getId(); */
@@ -35,7 +37,7 @@
35
  <td><?php echo $variant->getHeight() ?></td>
36
  <td><?php echo $variant->getDimWeight() ?></td>
37
  <td><?php echo $variant->getVariable() ?></td>
38
- <td><a id="varient_edit" href="<?php echo Mage::helper('adminhtml')->getUrl('inxpress/adminhtml_dhl/variant',array('product'=>$this->getRequest()->getParam('id'),'id'=>$variant->getId()))?>">Add/Edit</a></td>
39
  </tr>
40
  </tbody>
41
  </table>
@@ -82,3 +84,4 @@
82
  storeSelector(".loader-wrapper img").css('left',l_left+'px').css('top',l_top+'px');
83
  }
84
  </script>
 
1
  <?php
2
+
3
+ if(Mage::app()->getRequest()->getParam('id')){
4
  $variant = Mage::getModel('inxpress/variant')->getCollection()->addFieldToFilter('product_id',$this->getRequest()->getParam('id'))->getFirstItem();
5
  /* echo $this->getRequest()->getParam('id');
6
  echo $variant->getId(); */
37
  <td><?php echo $variant->getHeight() ?></td>
38
  <td><?php echo $variant->getDimWeight() ?></td>
39
  <td><?php echo $variant->getVariable() ?></td>
40
+ <td><a id="varient_edit" href="<?php echo Mage::helper('adminhtml')->getUrl('adminhtml/adminhtml_dhl/variant',array('product'=>$this->getRequest()->getParam('id'),'id'=>$variant->getId()))?>">Add/Edit</a></td>
41
  </tr>
42
  </tbody>
43
  </table>
84
  storeSelector(".loader-wrapper img").css('left',l_left+'px').css('top',l_top+'px');
85
  }
86
  </script>
87
+ <?php } ?>
package.xml CHANGED
@@ -1,9 +1,9 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>InXpress</name>
4
- <version>0.1.4</version>
5
  <stability>stable</stability>
6
- <license>0.3osl</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Get bulk discounted DHL Express rates, displayed in real-time to your customers.</summary>
@@ -20,9 +20,9 @@ As the largest small business solution of DHL Express, we are an authorized rese
20
  </description>
21
  <notes>Start selling internationally. Get bulk discounted DHL Express rates, displayed in real-time to your customers</notes>
22
  <authors><author><name>Cedcoss</name><user>Cedcoss</user><email>developer@cedcoss.com</email></author></authors>
23
- <date>2014-08-20</date>
24
- <time>07:55:47</time>
25
- <contents><target name="magelocal"><dir name="Cedcoss"><dir name="Inxpress"><dir name="Block"><dir name="Adminhtml"><dir name="Bundle"><dir name="Catalog"><dir name="Product"><dir name="Edit"><dir name="Tab"><file name="Attributes.php" hash="e357b4ecb18315fda2c47e8030012e5e"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="Edit"><dir name="Tab"><file name="Attributes.php" hash="4b35e1ff0c375a66c1285ede3d038418"/><file name="Variant.php" hash="91d23debf200dadd80e146ecfd26b4fc"/></dir></dir></dir></dir><file name="Csvimport.php" hash="1bc5779bfce7d8d1129ca6dfb752b5a8"/><dir name="Dhl"><dir name="Edit"><file name="Form.php" hash="1e2c5798c4bd2d61032c9e1608574f2e"/><dir name="Tab"><file name="General.php" hash="7253685240f6d7bc4baf19708b4cc862"/></dir><file name="Tabs.php" hash="b40f6379e3f57a2f98c815d2a7244d3f"/></dir><file name="Edit.php" hash="d88689fc94b81d615a4f64b537b26257"/><file name="Grid.php" hash="879c4707e10eff48b36285796a64f2d0"/></dir><file name="Dhl.php" hash="339a84506adaec2025a8f68306bcdd30"/><dir name="Inxpress"><dir name="Edit"><file name="Form.php" hash="bcb5b83c72fde8d0709b7ac90490e71c"/><dir name="Tab"><file name="General.php" hash="85e9cac1678a06ea9ed2046e683e5469"/></dir><file name="Tabs.php" hash="37abefbd4ad54f6d05d21a2a3a9a48a4"/></dir><file name="Edit.php" hash="6a0abed926a0bfb013a5d3391df2b79c"/><file name="Grid.php" hash="57b14c1199df3ca0616f5b85677c740b"/></dir><file name="Inxpress.php" hash="1718c828a6d840e302ef9818fba73fd1"/><file name="Variant.php" hash="d249a67a9b93505d0ced3022dbb27646"/></dir></dir><dir name="Helper"><file name="Data.php" hash="02786dd8930932a9627eb5ac600ddb73"/></dir><dir name="Model"><dir name="Carrier"><file name="Inxpress.php" hash="b86c897da4e90812a032a74c7f8cbacd"/><file name="Unitofmeasure.php" hash="89c1dd33c6342763606ec340b4f0fc4a"/></dir><file name="Dhl.php" hash="e493deb72b63f843d4d84145f188814a"/><file name="Inxpress.php" hash="c00b406b60986a41713219995929fe35"/><dir name="Mysql4"><dir name="Dhl"><file name="Collection.php" hash="beb11157339512591be47cad496d33d7"/></dir><file name="Dhl.php" hash="cfa31c7a528bd9cd67dbb9f04403f161"/><dir name="Inxpress"><file name="Collection.php" hash="fac10a23aad024cd73ea5ec0f618a488"/></dir><file name="Inxpress.php" hash="7b61c380c27488dc8cd885f58fe541ed"/><file name="Setup.php" hash="1d62889c7eb878fab5538068a659ff5b"/><dir name="Variant"><file name="Collection.php" hash="7a8a248004f2b4e8091b78fa96441136"/></dir><file name="Variant.php" hash="ea8dd752cc63e970ebec9bd927f7da8b"/></dir><file name="Variant.php" hash="a9a343e2fbcf3e26db9146864a7c1a51"/></dir><dir name="controllers"><file name="ActivateController.php" hash="48d1702edd21f9be61fa25c2d6b656fb"/><dir name="Adminhtml"><file name="DhlController.php" hash="5a32c5356ec2949306dd6044fa6e1e82"/><file name="IndexController.php" hash="150de793c305b376a765107a52c0b1e9"/></dir></dir><dir name="etc"><file name="config.xml" hash="87440471684e3b5576c54fca94342256"/><file name="system.xml" hash="3ac3ec9482377ec350a0bce82fb42660"/></dir><dir name="sql"><dir name="inxpress_setup"><file name="mysql4-install-0.1.0.php" hash="afb6f67e348dfb0b7b8e58e4c6058710"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="8c1df72fcc864599d11ef9f3060c3d8a"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="b6f63e3a963950de3bf48545b0c94151"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Cedcoss_Inxpress.xml" hash="ce41d55e28a410c66676332f84947239"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="inxpress.xml" hash="dc9466cb8a17ef0ebfba4fec8780420e"/></dir><dir name="template"><dir name="inxpress"><file name="csvimport.phtml" hash="2b6a7f335c898186f6a09e7f0dd223df"/><file name="popup.phtml" hash="b5d6e69a5632a5fb90f3e1257fe5cb84"/><file name="productedit.phtml" hash="318a4c20dc39574917d589650b8b6d79"/><file name="variant.phtml" hash="394d70580bd33d9af5ac28ff948b0bf6"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="skin"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="inxpress"><dir name="css"><file name="blank.gif" hash="325472601571f31e1bf00674c368d335"/><file name="fancybox_buttons.png" hash="b448080f8615e664b7788c7003803b59"/><file name="fancybox_loading.gif" hash="328cc0f6c78211485058d460e80f4fa8"/><file name="fancybox_loading@2x.gif" hash="f92938639fa894a0e8ded1c3368abe98"/><file name="fancybox_overlay.png" hash="77aeaa52715b898b73c74d68c630330e"/><file name="fancybox_sprite.png" hash="783d4031fe50c3d83c960911e1fbc705"/><file name="fancybox_sprite@2x.png" hash="ed9970ce22242421e66ff150aa97fe5f"/><file name="jquery.fancybox-buttons.css" hash="cac75538c2e3ddfadef839feaca8e356"/><file name="jquery.fancybox-thumbs.css" hash="52ddd84a9f42c1d4cd86d518a7f7e8bc"/><file name="jquery.fancybox.css" hash="6c55951ce1e3115711f63f99b7501f3a"/><file name="styles.css" hash="1c0e23e8c009f75795c4c1096f719e67"/></dir><dir name="images"><file name="gif-load-main.GIF" hash="8fd2f94e2bd93d7106461b08555d27db"/><file name="gif-load.GIF" hash="f4d3de48e22dcdca0ba54d609698828f"/></dir><dir name="js"><file name="jquery-1.10.1.min.js" hash="9b3af8c24f81421aa0bba99aa7b432ca"/><file name="jquery.fancybox-buttons.js" hash="be5c05db2dd0dc4574ede921f5161f83"/><file name="jquery.fancybox-media.js" hash="2788a541e052cb7926b7bde4058f87c1"/><file name="jquery.fancybox-thumbs.js" hash="e26ea36bf8046c223492f1641f9c476e"/><file name="jquery.fancybox.js" hash="e3367a65909f850774a2a54bdbfc821a"/><file name="jquery.fancybox.pack.js" hash="9e53f886fa07fc87b67a0b0b9412a943"/></dir></dir></dir></dir></dir></dir></target></contents>
26
  <compatible/>
27
- <dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
28
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>InXpress</name>
4
+ <version>0.1.5</version>
5
  <stability>stable</stability>
6
+ <license>Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Get bulk discounted DHL Express rates, displayed in real-time to your customers.</summary>
20
  </description>
21
  <notes>Start selling internationally. Get bulk discounted DHL Express rates, displayed in real-time to your customers</notes>
22
  <authors><author><name>Cedcoss</name><user>Cedcoss</user><email>developer@cedcoss.com</email></author></authors>
23
+ <date>2015-10-29</date>
24
+ <time>12:04:07</time>
25
+ <contents><target name="magelocal"><dir name="Cedcoss"><dir name="Inxpress"><dir name="Block"><dir name="Adminhtml"><dir name="Bundle"><dir name="Catalog"><dir name="Product"><dir name="Edit"><dir name="Tab"><file name="Attributes.php" hash="e357b4ecb18315fda2c47e8030012e5e"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="Edit"><dir name="Tab"><file name="Attributes.php" hash="4b35e1ff0c375a66c1285ede3d038418"/><file name="Variant.php" hash="91d23debf200dadd80e146ecfd26b4fc"/></dir></dir></dir></dir><file name="Csvimport.php" hash="1bc5779bfce7d8d1129ca6dfb752b5a8"/><dir name="Dhl"><dir name="Edit"><file name="Form.php" hash="1e2c5798c4bd2d61032c9e1608574f2e"/><dir name="Tab"><file name="General.php" hash="7253685240f6d7bc4baf19708b4cc862"/></dir><file name="Tabs.php" hash="b40f6379e3f57a2f98c815d2a7244d3f"/></dir><file name="Edit.php" hash="d88689fc94b81d615a4f64b537b26257"/><file name="Grid.php" hash="879c4707e10eff48b36285796a64f2d0"/></dir><file name="Dhl.php" hash="339a84506adaec2025a8f68306bcdd30"/><dir name="Inxpress"><dir name="Edit"><file name="Form.php" hash="bcb5b83c72fde8d0709b7ac90490e71c"/><dir name="Tab"><file name="General.php" hash="85e9cac1678a06ea9ed2046e683e5469"/></dir><file name="Tabs.php" hash="37abefbd4ad54f6d05d21a2a3a9a48a4"/></dir><file name="Edit.php" hash="6a0abed926a0bfb013a5d3391df2b79c"/><file name="Grid.php" hash="57b14c1199df3ca0616f5b85677c740b"/></dir><file name="Inxpress.php" hash="1ecf190cec8c670b14060b8582f95a93"/><file name="Variant.php" hash="d249a67a9b93505d0ced3022dbb27646"/></dir></dir><dir name="Helper"><file name="Data.php" hash="02786dd8930932a9627eb5ac600ddb73"/></dir><dir name="Model"><dir name="Carrier"><file name="Inxpress.php" hash="7b63e0a4a97a41dc0a634c7d5ed3e10e"/><file name="Unitofmeasure.php" hash="89c1dd33c6342763606ec340b4f0fc4a"/></dir><file name="Dhl.php" hash="e493deb72b63f843d4d84145f188814a"/><file name="Inxpress.php" hash="c00b406b60986a41713219995929fe35"/><dir name="Mysql4"><dir name="Dhl"><file name="Collection.php" hash="beb11157339512591be47cad496d33d7"/></dir><file name="Dhl.php" hash="cfa31c7a528bd9cd67dbb9f04403f161"/><dir name="Inxpress"><file name="Collection.php" hash="fac10a23aad024cd73ea5ec0f618a488"/></dir><file name="Inxpress.php" hash="7b61c380c27488dc8cd885f58fe541ed"/><file name="Setup.php" hash="1d62889c7eb878fab5538068a659ff5b"/><dir name="Variant"><file name="Collection.php" hash="7a8a248004f2b4e8091b78fa96441136"/></dir><file name="Variant.php" hash="ea8dd752cc63e970ebec9bd927f7da8b"/></dir><file name="Variant.php" hash="a9a343e2fbcf3e26db9146864a7c1a51"/></dir><dir name="controllers"><file name="ActivateController.php" hash="48d1702edd21f9be61fa25c2d6b656fb"/><dir name="Adminhtml"><file name="DhlController.php" hash="270d737db453f65af2e5627ba2bfc38f"/><file name="IndexController.php" hash="64fe843165e2fc4138abb7460fce5384"/></dir></dir><dir name="etc"><file name="config.xml" hash="a898668faa26f94f324a8e1172bf820f"/><file name="system.xml" hash="3ac3ec9482377ec350a0bce82fb42660"/></dir><dir name="sql"><dir name="inxpress_setup"><file name="mysql4-install-0.1.0.php" hash="afb6f67e348dfb0b7b8e58e4c6058710"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="8c1df72fcc864599d11ef9f3060c3d8a"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="b6f63e3a963950de3bf48545b0c94151"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="inxpress.xml" hash="cc4ee955dbdfcca1db2e4f739f328146"/></dir><dir name="template"><dir name="inxpress"><file name="csvimport.phtml" hash="2b6a7f335c898186f6a09e7f0dd223df"/><file name="popup.phtml" hash="dd38195cd3ed279a67a7e5d6c02b48b8"/><file name="productedit.phtml" hash="251c22cbfafcd7051dfcdc9f729827b4"/><file name="variant.phtml" hash="394d70580bd33d9af5ac28ff948b0bf6"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Cedcoss_Inxpress.xml" hash="ce41d55e28a410c66676332f84947239"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="inxpress"><dir name="css"><file name="blank.gif" hash="325472601571f31e1bf00674c368d335"/><file name="fancybox_buttons.png" hash="b448080f8615e664b7788c7003803b59"/><file name="fancybox_loading.gif" hash="328cc0f6c78211485058d460e80f4fa8"/><file name="fancybox_loading@2x.gif" hash="f92938639fa894a0e8ded1c3368abe98"/><file name="fancybox_overlay.png" hash="77aeaa52715b898b73c74d68c630330e"/><file name="fancybox_sprite.png" hash="783d4031fe50c3d83c960911e1fbc705"/><file name="fancybox_sprite@2x.png" hash="ed9970ce22242421e66ff150aa97fe5f"/><file name="jquery.fancybox-buttons.css" hash="cac75538c2e3ddfadef839feaca8e356"/><file name="jquery.fancybox-thumbs.css" hash="52ddd84a9f42c1d4cd86d518a7f7e8bc"/><file name="jquery.fancybox.css" hash="6c55951ce1e3115711f63f99b7501f3a"/><file name="styles.css" hash="1c0e23e8c009f75795c4c1096f719e67"/></dir><dir name="images"><file name="gif-load-main.GIF" hash="8fd2f94e2bd93d7106461b08555d27db"/><file name="gif-load.GIF" hash="f4d3de48e22dcdca0ba54d609698828f"/></dir><dir name="js"><file name="jquery-1.10.1.min.js" hash="9b3af8c24f81421aa0bba99aa7b432ca"/><file name="jquery.fancybox-buttons.js" hash="be5c05db2dd0dc4574ede921f5161f83"/><file name="jquery.fancybox-media.js" hash="2788a541e052cb7926b7bde4058f87c1"/><file name="jquery.fancybox-thumbs.js" hash="e26ea36bf8046c223492f1641f9c476e"/><file name="jquery.fancybox.js" hash="e3367a65909f850774a2a54bdbfc821a"/><file name="jquery.fancybox.pack.js" hash="9e53f886fa07fc87b67a0b0b9412a943"/></dir></dir></dir></dir></dir></target></contents>
26
  <compatible/>
27
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
28
  </package>