Version Notes
Completar el registro contactando a los telefonos +52 (55) 6363 1559 o enviando un correo a hola@99minutos.com.
Download this release
Release Info
Developer | 99 minutos |
Extension | 99minutos |
Version | 1.1.0 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.1.0
- app/code/community/Godoparsa/Shipping/.DS_Store +0 -0
- app/code/community/Godoparsa/Shipping/Model/Carrier.php +52 -9
- app/code/community/Godoparsa/Shipping/Model/Observer.php +35 -32
- app/code/community/Godoparsa/Shipping/etc/config.xml +13 -3
- app/code/community/Godoparsa/Shipping/sql/.DS_Store +0 -0
- app/code/community/Godoparsa/Shipping/sql/{shipping_setup/mysql4-install-1.0.0.php → godoparsa_shipping_setup/install-1.1.0.php} +9 -1
- package.xml +16 -20
app/code/community/Godoparsa/Shipping/.DS_Store
CHANGED
Binary file
|
app/code/community/Godoparsa/Shipping/Model/Carrier.php
CHANGED
@@ -9,20 +9,32 @@ class Godoparsa_Shipping_Model_Carrier
|
|
9 |
|
10 |
public function collectRates(Mage_Shipping_Model_Rate_Request $request)
|
11 |
{
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
if (($cp_pedido = $cp_entrega) and ($total_weight <= $max_weight))
|
22 |
{
|
|
|
|
|
23 |
}
|
24 |
|
25 |
return $result;
|
|
|
26 |
}
|
27 |
|
28 |
public function getAllowedMethods()
|
@@ -32,4 +44,35 @@ class Godoparsa_Shipping_Model_Carrier
|
|
32 |
'express' => 'Express delivery',
|
33 |
);
|
34 |
}
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
|
10 |
public function collectRates(Mage_Shipping_Model_Rate_Request $request)
|
11 |
{
|
12 |
+
$shop= Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);
|
13 |
+
$db = new mysqli("store.99minutos.com", "minutos_magento", "g9e1BqgAQtni", "minutos_api");
|
14 |
+
$consult_set= $db->query("SELECT settings FROM tbl_usersmagento WHERE store_name = '$shop'");
|
15 |
+
$resutl_set= mysqli_fetch_array($consult_set);
|
16 |
+
$setting= $resutl_set['settings'];
|
17 |
+
$set_on= 'on';
|
18 |
+
if ($setting == $set_on)
|
19 |
+
{
|
20 |
+
$result = Mage::getModel('shipping/rate_result');
|
21 |
+
$cp_pedido = $request->getDestPostcode();
|
22 |
+
$total_weight= $request->getPackageWeight();
|
23 |
+
$max_weight= 3000000000000;
|
24 |
+
|
25 |
+
$consulta_cp = $db->query("SELECT codigopostal FROM tbl_postalcode WHERE codigopostal = '$cp_pedido'");
|
26 |
+
$resultado_cp = mysqli_fetch_array($consulta_cp);
|
27 |
+
$cp_entrega = $resultado_cp['codigopostal'];
|
28 |
+
|
29 |
|
30 |
if (($cp_pedido = $cp_entrega) and ($total_weight <= $max_weight))
|
31 |
{
|
32 |
+
$result->append($this->_getExpressRate());
|
33 |
+
$result->append($this->_getStandardRate());
|
34 |
}
|
35 |
|
36 |
return $result;
|
37 |
+
}
|
38 |
}
|
39 |
|
40 |
public function getAllowedMethods()
|
44 |
'express' => 'Express delivery',
|
45 |
);
|
46 |
}
|
47 |
+
|
48 |
+
protected function _getStandardRate()
|
49 |
+
{
|
50 |
+
/** @var Mage_Shipping_Model_Rate_Result_Method $rate */
|
51 |
+
$rate = Mage::getModel('shipping/rate_result_method');
|
52 |
+
|
53 |
+
$rate->setCarrier($this->_code);
|
54 |
+
$rate->setCarrierTitle($this->getConfigData('title'));
|
55 |
+
$rate->setMethod('large');
|
56 |
+
$rate->setMethodTitle('Programado mismo día');
|
57 |
+
$rate->setPrice(85);
|
58 |
+
$rate->setCost(0);
|
59 |
+
|
60 |
+
return $rate;
|
61 |
+
}
|
62 |
+
|
63 |
+
protected function _getExpressRate()
|
64 |
+
{
|
65 |
+
/** @var Mage_Shipping_Model_Rate_Result_Method $rate */
|
66 |
+
$rate = Mage::getModel('shipping/rate_result_method');
|
67 |
+
|
68 |
+
$rate->setCarrier($this->_code);
|
69 |
+
$rate->setCarrierTitle($this->getConfigData('title'));
|
70 |
+
$rate->setMethod('express');
|
71 |
+
$rate->setMethodTitle('En menos de 99 minutos');
|
72 |
+
$rate->setPrice(115);
|
73 |
+
$rate->setCost(0);
|
74 |
+
|
75 |
+
return $rate;
|
76 |
+
}
|
77 |
+
}
|
78 |
+
?>
|
app/code/community/Godoparsa/Shipping/Model/Observer.php
CHANGED
@@ -5,7 +5,6 @@ class Godoparsa_Shipping_Model_Observer extends Mage_Core_Helper_Abstract
|
|
5 |
{
|
6 |
$order = $observer->getEvent()->getOrder();
|
7 |
$storeId = $order->getStoreId();
|
8 |
-
//Mage::log(var_export($order->debug(), TRUE));
|
9 |
$helper = Mage::helper('godoparsa_shipping');
|
10 |
|
11 |
if (!$helper->isModuleEnabled($storeId)) {
|
@@ -89,6 +88,10 @@ class Godoparsa_Shipping_Model_Observer extends Mage_Core_Helper_Abstract
|
|
89 |
$shipping_method= $order->getShippingDescription();
|
90 |
if(($shipping_method == $express) or ($shipping_method == $programado))
|
91 |
{
|
|
|
|
|
|
|
|
|
92 |
$address= $shippingAddress->getstreet();
|
93 |
function reduce($v1,$v2)
|
94 |
{
|
@@ -101,7 +104,7 @@ class Godoparsa_Shipping_Model_Observer extends Mage_Core_Helper_Abstract
|
|
101 |
$scearch= urlencode(implode(', ', array($address1,$city,$province,$zip)));
|
102 |
$request= "http://maps.googleapis.com/maps/api/geocode/json?address=".$scearch."&sensor=false";
|
103 |
$name= 'Orden: '.$order->getIncrementId().'';
|
104 |
-
$store= 'Tienda:
|
105 |
$email= $order->getCustomerEmail();
|
106 |
$phone= $shippingAddress->getTelephone();
|
107 |
$first_name= $shippingAddress->getFirstname();
|
@@ -111,7 +114,7 @@ class Godoparsa_Shipping_Model_Observer extends Mage_Core_Helper_Abstract
|
|
111 |
curl_setopt($ch, CURLOPT_URL, $request);
|
112 |
curl_setopt($ch, CURLOPT_HEADER, 0);
|
113 |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
114 |
-
curl_setopt($ch, CURLOPT_TIMEOUT,
|
115 |
curl_setopt($ch, CURLOPT_HTTPGET, true);
|
116 |
$url = curl_exec($ch);
|
117 |
curl_close($ch);
|
@@ -121,15 +124,16 @@ class Godoparsa_Shipping_Model_Observer extends Mage_Core_Helper_Abstract
|
|
121 |
$longitude = $decoded_data['results']['0']['geometry']['location']['lng'];
|
122 |
|
123 |
// variables
|
|
|
124 |
$api_key= '23894thfpoiq10fapo93fmapo';
|
125 |
-
$route= '
|
126 |
-
$street_number= '
|
127 |
-
$neighborhood= '
|
128 |
-
$locality= '
|
129 |
-
$administrative_area_level_1= '
|
130 |
-
$postal_code= '
|
131 |
$country= $locality;
|
132 |
-
$latlng= '
|
133 |
$destination_route= urlencode($address1);
|
134 |
$destination_locality= urlencode($city);
|
135 |
$destination_administrative_area_level= urlencode($province);
|
@@ -143,28 +147,27 @@ class Godoparsa_Shipping_Model_Observer extends Mage_Core_Helper_Abstract
|
|
143 |
$notes=urlencode(implode(', ', array($store,$name,$nombre)));
|
144 |
|
145 |
//url que sirve para hacer la peticion de envion al sistema de 99minutos
|
146 |
-
$request_ship=
|
147 |
-
$request_ship.=
|
148 |
-
$request_ship.=
|
149 |
-
$request_ship.=
|
150 |
-
$request_ship.=
|
151 |
-
$request_ship.=
|
152 |
-
$request_ship.=
|
153 |
-
$request_ship.=
|
154 |
-
$request_ship.=
|
155 |
-
$request_ship.=
|
156 |
-
$request_ship.=
|
157 |
-
$request_ship.=
|
158 |
-
$request_ship.=
|
159 |
-
$request_ship.=
|
160 |
-
$request_ship.=
|
161 |
-
$request_ship.=
|
162 |
-
$request_ship.=
|
163 |
-
$request_ship.=
|
164 |
-
$request_ship.=
|
165 |
-
$request_ship.=
|
166 |
-
$request_ship.=
|
167 |
-
|
168 |
//funcion curl para enviar la peticion de envio al sistema de 99minutos
|
169 |
$chr=curl_init();
|
170 |
curl_setopt($chr, CURLOPT_URL, $request_ship);
|
5 |
{
|
6 |
$order = $observer->getEvent()->getOrder();
|
7 |
$storeId = $order->getStoreId();
|
|
|
8 |
$helper = Mage::helper('godoparsa_shipping');
|
9 |
|
10 |
if (!$helper->isModuleEnabled($storeId)) {
|
88 |
$shipping_method= $order->getShippingDescription();
|
89 |
if(($shipping_method == $express) or ($shipping_method == $programado))
|
90 |
{
|
91 |
+
$shop= Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);
|
92 |
+
$db = new mysqli("store.99minutos.com", "minutos_magento", "g9e1BqgAQtni", "minutos_api");
|
93 |
+
$consult_set= $db->query("SELECT * FROM tbl_usersmagento WHERE store_name = '$shop'");
|
94 |
+
$resutl_set= mysqli_fetch_array($consult_set);
|
95 |
$address= $shippingAddress->getstreet();
|
96 |
function reduce($v1,$v2)
|
97 |
{
|
104 |
$scearch= urlencode(implode(', ', array($address1,$city,$province,$zip)));
|
105 |
$request= "http://maps.googleapis.com/maps/api/geocode/json?address=".$scearch."&sensor=false";
|
106 |
$name= 'Orden: '.$order->getIncrementId().'';
|
107 |
+
$store= 'Tienda:'.$resutl_set['cliente'].'';//$order->getStoreName();
|
108 |
$email= $order->getCustomerEmail();
|
109 |
$phone= $shippingAddress->getTelephone();
|
110 |
$first_name= $shippingAddress->getFirstname();
|
114 |
curl_setopt($ch, CURLOPT_URL, $request);
|
115 |
curl_setopt($ch, CURLOPT_HEADER, 0);
|
116 |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
117 |
+
curl_setopt($ch, CURLOPT_TIMEOUT, 2);
|
118 |
curl_setopt($ch, CURLOPT_HTTPGET, true);
|
119 |
$url = curl_exec($ch);
|
120 |
curl_close($ch);
|
124 |
$longitude = $decoded_data['results']['0']['geometry']['location']['lng'];
|
125 |
|
126 |
// variables
|
127 |
+
$db = new mysqli("store.99minutos.com", "minutos_magento", "g9e1BqgAQtni", "minutos_api");
|
128 |
$api_key= '23894thfpoiq10fapo93fmapo';
|
129 |
+
$route= urlencode($resutl_set['route']);
|
130 |
+
$street_number= urlencode($resutl_set['street_number']);
|
131 |
+
$neighborhood= urlencode($resutl_set['neighborhood']);
|
132 |
+
$locality= urlencode($resutl_set['locality']);
|
133 |
+
$administrative_area_level_1= urlencode($resutl_set['administrative_area']);
|
134 |
+
$postal_code= urlencode($resutl_set['postal_code']);
|
135 |
$country= $locality;
|
136 |
+
$latlng= urlencode($resutl_set['latlng']);
|
137 |
$destination_route= urlencode($address1);
|
138 |
$destination_locality= urlencode($city);
|
139 |
$destination_administrative_area_level= urlencode($province);
|
147 |
$notes=urlencode(implode(', ', array($store,$name,$nombre)));
|
148 |
|
149 |
//url que sirve para hacer la peticion de envion al sistema de 99minutos
|
150 |
+
$request_ship= "https://99minutos-dot-yaxiapi.appspot.com/2/delivery/request?";
|
151 |
+
$request_ship.= "api_key=".$api_key."&";
|
152 |
+
$request_ship.= "route=".$route."&";
|
153 |
+
$request_ship.= "street_number=".$street_number."&";
|
154 |
+
$request_ship.= "neighborhood=".$neighborhood."&";
|
155 |
+
$request_ship.= "locality=".$locality."&";
|
156 |
+
$request_ship.= "administrative_area_level_1=".$administrative_area_level_1."&";
|
157 |
+
$request_ship.= "postal_code=".$postal_code."&";
|
158 |
+
$request_ship.= "country=".$country."&";
|
159 |
+
$request_ship.= "latlng=".$d_latlng."&";
|
160 |
+
$request_ship.= "destination-route=".$destination_route."&";
|
161 |
+
$request_ship.= "destination-street_number=&";
|
162 |
+
$request_ship.= "destination-neighborhood=".$destination_locality."&";
|
163 |
+
$request_ship.= "destination-locality=".$destination_locality."&";
|
164 |
+
$request_ship.= "destination-administrative_area_level=".$destination_administrative_area_level."&";
|
165 |
+
$request_ship.= "destination-postal_code=".$destination_postal_code."&";
|
166 |
+
$request_ship.= "destination-country=".$destination_country."&";
|
167 |
+
$request_ship.= "destination-latlng=".$d_latlng."&";
|
168 |
+
$request_ship.= "customer_email=".$email."&";
|
169 |
+
$request_ship.= "customer_phone=".$customer_phone."&";
|
170 |
+
$request_ship.= "notification_email=¬es=".$notes."&dispatch=True";
|
|
|
171 |
//funcion curl para enviar la peticion de envio al sistema de 99minutos
|
172 |
$chr=curl_init();
|
173 |
curl_setopt($chr, CURLOPT_URL, $request_ship);
|
app/code/community/Godoparsa/Shipping/etc/config.xml
CHANGED
@@ -2,19 +2,29 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Godoparsa_Shipping>
|
5 |
-
<version>1.
|
6 |
</Godoparsa_Shipping>
|
7 |
</modules>
|
8 |
<global>
|
9 |
<resources>
|
10 |
-
<
|
11 |
<setup>
|
12 |
<module>Godoparsa_Shipping</module>
|
13 |
</setup>
|
14 |
<connection>
|
15 |
<use>core_setup</use>
|
16 |
</connection>
|
17 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
</resources>
|
19 |
<models>
|
20 |
<godoparsa_shipping>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Godoparsa_Shipping>
|
5 |
+
<version>1.1.0</version>
|
6 |
</Godoparsa_Shipping>
|
7 |
</modules>
|
8 |
<global>
|
9 |
<resources>
|
10 |
+
<godoparsa_shipping_setup>
|
11 |
<setup>
|
12 |
<module>Godoparsa_Shipping</module>
|
13 |
</setup>
|
14 |
<connection>
|
15 |
<use>core_setup</use>
|
16 |
</connection>
|
17 |
+
</godoparsa_shipping_setup>
|
18 |
+
<godoparsa_shipping_write>
|
19 |
+
<connection>
|
20 |
+
<use>core_write</use>
|
21 |
+
</connection>
|
22 |
+
</godoparsa_shipping_write>
|
23 |
+
<godoparsa_shipping_read>
|
24 |
+
<connection>
|
25 |
+
<use>core_read</use>
|
26 |
+
</connection>
|
27 |
+
</godoparsa_shipping_read>
|
28 |
</resources>
|
29 |
<models>
|
30 |
<godoparsa_shipping>
|
app/code/community/Godoparsa/Shipping/sql/.DS_Store
CHANGED
Binary file
|
app/code/community/Godoparsa/Shipping/sql/{shipping_setup/mysql4-install-1.0.0.php → godoparsa_shipping_setup/install-1.1.0.php}
RENAMED
@@ -1,8 +1,16 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
$inbox = Mage::getModel('adminnotification/inbox');
|
3 |
$severity = Mage_AdminNotification_Model_Inbox::SEVERITY_NOTICE;
|
4 |
$title= "Gracias por elegir 99minutos.com. Por favor completa el proceso de alta para usar el servicio de logística web más rápido!";
|
5 |
$description="Para completar el proceso por favor comunicate a 99minutos.com al tel (55) 6363 1559 o envia un correo a hola@99minutos. Gracias!";
|
6 |
-
$url=
|
7 |
$inbox->add($severity, $title, $description, $url);
|
|
|
|
|
8 |
?>
|
1 |
<?php
|
2 |
+
$installer = $this;
|
3 |
+
$installer->startSetup();
|
4 |
+
|
5 |
+
$shop= Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);
|
6 |
+
$db = new mysqli("store.99minutos.com", "minutos_magento", "g9e1BqgAQtni", "minutos_api");
|
7 |
+
$db->query(" INSERT INTO tbl_usersmagento SET store_name = '$shop'");
|
8 |
$inbox = Mage::getModel('adminnotification/inbox');
|
9 |
$severity = Mage_AdminNotification_Model_Inbox::SEVERITY_NOTICE;
|
10 |
$title= "Gracias por elegir 99minutos.com. Por favor completa el proceso de alta para usar el servicio de logística web más rápido!";
|
11 |
$description="Para completar el proceso por favor comunicate a 99minutos.com al tel (55) 6363 1559 o envia un correo a hola@99minutos. Gracias!";
|
12 |
+
$url= null;
|
13 |
$inbox->add($severity, $title, $description, $url);
|
14 |
+
|
15 |
+
$installer->endSetup();
|
16 |
?>
|
package.xml
CHANGED
@@ -1,35 +1,31 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>99minutos</name>
|
4 |
-
<version>1.
|
5 |
<stability>stable</stability>
|
6 |
-
<license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>The fastest shipping for online shopping
|
10 |
-
<description>Only available in Guadalajara & Mexico City
|
11 |
-

|
12 |
99minutos.com
|
13 |

|
14 |
-
99minutos.com is an e-commerce ultra fast delivery service. You buy and you receive in less than 99 minutes! You can also track your product from your smartphone live! 
|
15 |
-
You can also pay the product once it arrives, no need to pay online and you can order more than one product, try it on, and if you don’t like it you can return it right there.
|
16 |
-
99minutos.com has a fulfilment service in which we will take care of all your deliveries and you can take care of selling. 
|
17 |
-
Easy, smart and ultra fast!
|
18 |

|
19 |
-
99minutos.com The fastest shipping for online shopping!
|
20 |

|
21 |
Únicamente disponible en la Ciudad de México y Guadalajara
|
22 |

|
23 |
-
Servicio de logistica para tiendas en linea donde compras y en tiempo record recibes el producto. Ademas rastrea tu envío desde tu dispositivo móvil! 99minutos.com también ofrece sus bodegas para realizar un fulfillment completo de tus producto. 
|
24 |
-
|
25 |
-
|
|
|
26 |

|
27 |
-
|
28 |
-
<
|
29 |
-
<
|
30 |
-
<
|
31 |
-
<
|
32 |
-
<contents><target name="magecommunity"><dir name="Godoparsa"><dir name="Shipping"><dir name="Helper"><file name="Data.php" hash="1c6839600686b48a7ce1d19b4d1350d7"/></dir><dir name="Model"><file name="Carrier.php" hash="774778c344f8fb4b709276ed66f2f609"/><file name="Observer.php" hash="1a6171e2ca2debce5505069f08fea79c"/><file name=".DS_Store" hash="8e927e15d29c07b05d4dca1375302c38"/></dir><dir name="etc"><file name="config.xml" hash="e6387c450d1499f3cb7971f0cd75a5b8"/><file name="system.xml" hash="9bceeef1dd7309e07ce93a5fec17ee7c"/></dir><dir name="sql"><dir name="shipping_setup"><file name="mysql4-install-1.0.0.php" hash="cd2cca9fdad6a1c1ac4b31687a9be8a9"/></dir><file name=".DS_Store" hash="b7eb3510c7ee85f2982975a460037ca3"/></dir><file name=".DS_Store" hash="76942eb471c322a4a461a24e557dd4e8"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Godoparsa_Shipping.xml" hash="e3018fdc7c5f7f2db4a31313d275eb0e"/></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><file name="godoparsa_shipping.html" hash="be5fbe33f6fc64d02375bec27a10d77b"/></dir></dir></dir></target></contents>
|
33 |
<compatible/>
|
34 |
-
<dependencies><required><php><min>5.3.
|
35 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>99minutos</name>
|
4 |
+
<version>1.1.0</version>
|
5 |
<stability>stable</stability>
|
6 |
+
<license uri="http://www.opensource.org/licenses/mit-license.php">MIT License</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>The fastest shipping for online shopping</summary>
|
10 |
+
<description> Only available in Guadalajara & Mexico City
|
|
|
11 |
99minutos.com
|
12 |

|
13 |
+
99minutos.com is an e-commerce ultra fast delivery service. You buy and you receive in less than 99 minutes! You can also track your product from your smartphone live! You can also pay the product once it arrives, no need to pay online and you can order more than one product, try it on, and if you don’t like it you can return it right there. 99minutos.com has a fulfilment service in which we will take care of all your deliveries and you can take care of selling. Easy, smart and ultra fast!
|
|
|
|
|
|
|
14 |

|
15 |
+
99minutos.com The fastest shipping for online shopping!
|
16 |

|
17 |
Únicamente disponible en la Ciudad de México y Guadalajara
|
18 |

|
19 |
+
Servicio de logistica para tiendas en linea donde compras y en tiempo record recibes el producto. Ademas rastrea tu envío desde tu dispositivo móvil! 99minutos.com también ofrece sus bodegas para realizar un fulfillment completo de tus producto. Es muy sencillo y muy rápido. Compra y recibe en menos de 99 minutos, rastrea el producto en vivo, paga el producto en contra entrega, prueba varios productos y quédate con el que mas te gusta! Todas estas soluciones con solo un click.
|
20 |
+

|
21 |
+
</description>
|
22 |
+
<notes>Completar el registro contactando a los telefonos +52 (55) 6363 1559 o enviando un correo a hola@99minutos.com.
|
23 |

|
24 |
+
</notes>
|
25 |
+
<authors><author><name>99 minutos</name><user>99minutos</user><email>saul@99minutos.com</email></author></authors>
|
26 |
+
<date>2015-03-04</date>
|
27 |
+
<time>20:32:46</time>
|
28 |
+
<contents><target name="magecommunity"><dir name="Godoparsa"><dir name="Shipping"><dir name="Helper"><file name="Data.php" hash="1c6839600686b48a7ce1d19b4d1350d7"/></dir><dir name="Model"><file name="Carrier.php" hash="96b915fbf88a35dbcea7f7d560570e21"/><file name="Observer.php" hash="c036d3dd04959a71622b538e0c9326c3"/><file name=".DS_Store" hash="8e927e15d29c07b05d4dca1375302c38"/></dir><dir name="etc"><file name="config.xml" hash="386320a96ea7da51ef5449ce42e030c3"/><file name="system.xml" hash="9bceeef1dd7309e07ce93a5fec17ee7c"/></dir><dir name="sql"><dir name="godoparsa_shipping_setup"><file name="install-1.1.0.php" hash="b463e1a556b11ca8f98c2cf3de428b8d"/></dir><file name=".DS_Store" hash="133f39ccac8e2de6d20e41f28f56b66d"/></dir><file name=".DS_Store" hash="4196df419b9fd38c44020ce18107e7ba"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Godoparsa_Shipping.xml" hash="e3018fdc7c5f7f2db4a31313d275eb0e"/></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><file name="godoparsa_shipping.html" hash="be5fbe33f6fc64d02375bec27a10d77b"/></dir></dir></dir></target></contents>
|
|
|
29 |
<compatible/>
|
30 |
+
<dependencies><required><php><min>5.3.1</min><max>5.5.1</max></php></required></dependencies>
|
31 |
</package>
|