Version Notes
Minor fixes.
Download this release
Release Info
Developer | EaDesign |
Extension | Eadesigndev_Romcity |
Version | 1.0.8 |
Comparing to | |
See all releases |
Code changes from version 1.0.7 to 1.0.8
- app/code/local/Eadesigndev/Romcity/Block/Adminhtml/Block/Customer/Edit/Tab/Addresses.php +1 -1
- app/code/local/Eadesigndev/Romcity/Block/Adminhtml/Block/Sales/Order/Address/Form.php +1 -1
- app/code/local/Eadesigndev/Romcity/Block/Adminhtml/Block/Sales/Order/Create/Billing/Address.php +1 -1
- app/code/local/Eadesigndev/Romcity/Block/Adminhtml/Block/Sales/Order/Create/Shipping/Address.php +1 -1
- app/code/local/Eadesigndev/Romcity/Helper/Data.php +2 -2
- app/code/local/Eadesigndev/Romcity/Model/Eacore/Feed.php +123 -0
- app/code/local/Eadesigndev/Romcity/Model/Eacore/Observer.php +14 -0
- app/code/local/Eadesigndev/Romcity/Model/Mysql4/Romcity.php +1 -1
- app/code/local/Eadesigndev/Romcity/Model/Mysql4/Romcity/Collection.php +1 -1
- app/code/local/Eadesigndev/Romcity/Model/Romcity.php +1 -1
- app/code/local/Eadesigndev/Romcity/controllers/Adminhtml/IndexController.php +5 -0
- app/code/local/Eadesigndev/Romcity/etc/config.xml +22 -12
- app/code/local/Eadesigndev/Romcity/sql/eadsign_romcity_setup/mysql4-install-1.0.1.php +2 -2
- package.xml +6 -6
app/code/local/Eadesigndev/Romcity/Block/Adminhtml/Block/Customer/Edit/Tab/Addresses.php
CHANGED
@@ -97,7 +97,7 @@ class Eadesigndev_Romcity_Block_Adminhtml_Block_Customer_Edit_Tab_Addresses exte
|
|
97 |
$city = $form->getElement('city');
|
98 |
if ($city) {
|
99 |
$city->addClass('rom-city');
|
100 |
-
$city->setRenderer(Mage::getModel('
|
101 |
}
|
102 |
|
103 |
if ($this->isReadonly()) {
|
97 |
$city = $form->getElement('city');
|
98 |
if ($city) {
|
99 |
$city->addClass('rom-city');
|
100 |
+
$city->setRenderer(Mage::getModel('romcity/adminhtml_render_city'));
|
101 |
}
|
102 |
|
103 |
if ($this->isReadonly()) {
|
app/code/local/Eadesigndev/Romcity/Block/Adminhtml/Block/Sales/Order/Address/Form.php
CHANGED
@@ -62,7 +62,7 @@ class Eadesigndev_Romcity_Block_Adminhtml_Block_Sales_Order_Address_Form
|
|
62 |
$city = $this->_form->getElement('city');
|
63 |
if ($city) {
|
64 |
$city->addClass('rom-city');
|
65 |
-
$city->setRenderer(Mage::getModel('
|
66 |
}
|
67 |
$this->_form->setId('edit_form');
|
68 |
$this->_form->setMethod('post');
|
62 |
$city = $this->_form->getElement('city');
|
63 |
if ($city) {
|
64 |
$city->addClass('rom-city');
|
65 |
+
$city->setRenderer(Mage::getModel('romcity/adminhtml_render_city'));
|
66 |
}
|
67 |
$this->_form->setId('edit_form');
|
68 |
$this->_form->setMethod('post');
|
app/code/local/Eadesigndev/Romcity/Block/Adminhtml/Block/Sales/Order/Create/Billing/Address.php
CHANGED
@@ -69,7 +69,7 @@ class Eadesigndev_Romcity_Block_Adminhtml_Block_Sales_Order_Create_Billing_Addre
|
|
69 |
$city = $this->_form->getElement('city');
|
70 |
if ($city) {
|
71 |
$city->addClass('rom-city');
|
72 |
-
$city->setRenderer(Mage::getModel('
|
73 |
}
|
74 |
|
75 |
$this->_form->addFieldNameSuffix('order[billing_address]');
|
69 |
$city = $this->_form->getElement('city');
|
70 |
if ($city) {
|
71 |
$city->addClass('rom-city');
|
72 |
+
$city->setRenderer(Mage::getModel('romcity/adminhtml_render_cityorder'));
|
73 |
}
|
74 |
|
75 |
$this->_form->addFieldNameSuffix('order[billing_address]');
|
app/code/local/Eadesigndev/Romcity/Block/Adminhtml/Block/Sales/Order/Create/Shipping/Address.php
CHANGED
@@ -68,7 +68,7 @@ class Eadesigndev_Romcity_Block_Adminhtml_Block_Sales_Order_Create_Shipping_Addr
|
|
68 |
$city = $this->_form->getElement('city');
|
69 |
if ($city) {
|
70 |
$city->addClass('rom-city');
|
71 |
-
$city->setRenderer(Mage::getModel('
|
72 |
}
|
73 |
|
74 |
return $this;
|
68 |
$city = $this->_form->getElement('city');
|
69 |
if ($city) {
|
70 |
$city->addClass('rom-city');
|
71 |
+
$city->setRenderer(Mage::getModel('romcity/adminhtml_render_cityorder'));
|
72 |
}
|
73 |
|
74 |
return $this;
|
app/code/local/Eadesigndev/Romcity/Helper/Data.php
CHANGED
@@ -11,7 +11,7 @@ class Eadesigndev_Romcity_Helper_Data extends Mage_Core_Helper_Abstract
|
|
11 |
|
12 |
public function getCities($countryId, $regionId)
|
13 |
{
|
14 |
-
$cityCollection = Mage::getModel('
|
15 |
$cityCollection->addFieldToSelect('cityname')
|
16 |
->addFieldToFilter('country_id', $countryId)
|
17 |
->addFieldToFilter('region_id', $regionId);
|
@@ -23,7 +23,7 @@ class Eadesigndev_Romcity_Helper_Data extends Mage_Core_Helper_Abstract
|
|
23 |
|
24 |
public function getCitiesAsOptions($countryId, $regionId)
|
25 |
{
|
26 |
-
$cityCollection = Mage::getModel('
|
27 |
$cityCollection->addFieldToSelect('cityname')
|
28 |
->addFieldToFilter('country_id', $countryId)
|
29 |
->addFieldToFilter('region_id', $regionId);
|
11 |
|
12 |
public function getCities($countryId, $regionId)
|
13 |
{
|
14 |
+
$cityCollection = Mage::getModel('romcity/romcity')->getCollection();
|
15 |
$cityCollection->addFieldToSelect('cityname')
|
16 |
->addFieldToFilter('country_id', $countryId)
|
17 |
->addFieldToFilter('region_id', $regionId);
|
23 |
|
24 |
public function getCitiesAsOptions($countryId, $regionId)
|
25 |
{
|
26 |
+
$cityCollection = Mage::getModel('romcity/romcity')->getCollection();
|
27 |
$cityCollection->addFieldToSelect('cityname')
|
28 |
->addFieldToFilter('country_id', $countryId)
|
29 |
->addFieldToFilter('region_id', $regionId);
|
app/code/local/Eadesigndev/Romcity/Model/Eacore/Feed.php
ADDED
@@ -0,0 +1,123 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
Class Eadesigndev_Romcity_Model_Eacore_Feed extends Mage_AdminNotification_Model_Feed
|
4 |
+
{
|
5 |
+
|
6 |
+
protected $eadesignUrl;
|
7 |
+
|
8 |
+
public function checkUpdate()
|
9 |
+
{
|
10 |
+
|
11 |
+
if (($this->getFrequency() + $this->getLastUpdate()) > time()) {
|
12 |
+
return $this;
|
13 |
+
}
|
14 |
+
|
15 |
+
$this->getClientData();
|
16 |
+
$feedData = array();
|
17 |
+
|
18 |
+
$feedXml = $this->getFeedData();
|
19 |
+
|
20 |
+
if ($feedXml && $feedXml->channel && $feedXml->channel->item) {
|
21 |
+
foreach ($feedXml->channel->item as $item) {
|
22 |
+
$feedData[] = array(
|
23 |
+
'severity' => (int)$item->severity,
|
24 |
+
'date_added' => $this->getDate((string)$item->pubDate),
|
25 |
+
'title' => (string)$item->title,
|
26 |
+
'description' => (string)$item->description,
|
27 |
+
'url' => (string)$item->link,
|
28 |
+
);
|
29 |
+
}
|
30 |
+
|
31 |
+
|
32 |
+
if ($feedData) {
|
33 |
+
Mage::getModel('adminnotification/inbox')->parse(array_reverse($feedData));
|
34 |
+
}
|
35 |
+
|
36 |
+
}
|
37 |
+
|
38 |
+
$this->setLastUpdate();
|
39 |
+
|
40 |
+
return $this;
|
41 |
+
}
|
42 |
+
|
43 |
+
|
44 |
+
/**
|
45 |
+
* Retrieve Last update time
|
46 |
+
*
|
47 |
+
* @return int
|
48 |
+
*/
|
49 |
+
public function getLastUpdate()
|
50 |
+
{
|
51 |
+
return Mage::app()->loadCache('eadesign_lastcheck');
|
52 |
+
}
|
53 |
+
|
54 |
+
/**
|
55 |
+
* Set last update time (now)
|
56 |
+
*
|
57 |
+
* @return Mage_AdminNotification_Model_Feed
|
58 |
+
*/
|
59 |
+
public function setLastUpdate()
|
60 |
+
{
|
61 |
+
Mage::app()->saveCache(time(), 'eadesign_lastcheck');
|
62 |
+
return $this;
|
63 |
+
}
|
64 |
+
|
65 |
+
public function getFeedUrl()
|
66 |
+
{
|
67 |
+
if (is_null($this->eadesignUrl)) {
|
68 |
+
$this->eadesignUrl = 'https://www.eadesign.ro/notifications.rss';
|
69 |
+
}
|
70 |
+
return $this->eadesignUrl;
|
71 |
+
}
|
72 |
+
|
73 |
+
|
74 |
+
public function getFeedData()
|
75 |
+
{
|
76 |
+
$curl = new Varien_Http_Adapter_Curl();
|
77 |
+
$curl->setConfig(array(
|
78 |
+
'timeout' => 3
|
79 |
+
));
|
80 |
+
|
81 |
+
$curl->write(Zend_Http_Client::GET, $this->getFeedUrl(), '1.0');
|
82 |
+
$data = $curl->read();
|
83 |
+
if ($data === false) {
|
84 |
+
return false;
|
85 |
+
}
|
86 |
+
$data = preg_split('/^\r?$/m', $data, 2);
|
87 |
+
$data = trim($data[1]);
|
88 |
+
$curl->close();
|
89 |
+
|
90 |
+
try {
|
91 |
+
$xml = new SimpleXMLElement($data);
|
92 |
+
} catch (Exception $e) {
|
93 |
+
return false;
|
94 |
+
}
|
95 |
+
|
96 |
+
return $xml;
|
97 |
+
}
|
98 |
+
|
99 |
+
public function getClientData()
|
100 |
+
{
|
101 |
+
$eadesignUrl = 'https://www.eadesign.ro/';
|
102 |
+
|
103 |
+
$extension = 'Eadesigndev_Romcity';
|
104 |
+
|
105 |
+
$moduleVersion = Mage::getConfig()->getModuleConfig($extension)->version;
|
106 |
+
|
107 |
+
$baseUrl = 'track/index/update?url=' . Mage::getBaseUrl();
|
108 |
+
$version = '&version=' . $moduleVersion;
|
109 |
+
$moduleExtension = '&extension='.$extension;
|
110 |
+
|
111 |
+
$url = $eadesignUrl.$baseUrl.$version.$moduleExtension;
|
112 |
+
|
113 |
+
$curl = new Varien_Http_Adapter_Curl();
|
114 |
+
$curl->setConfig(array(
|
115 |
+
'timeout' => 3
|
116 |
+
));
|
117 |
+
|
118 |
+
$curl->write(Zend_Http_Client::GET, $url, '1.0');
|
119 |
+
$curl->read();
|
120 |
+
$curl->close();
|
121 |
+
}
|
122 |
+
|
123 |
+
}
|
app/code/local/Eadesigndev/Romcity/Model/Eacore/Observer.php
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Eadesigndev_Romcity_Model_Eacore_Observer
|
3 |
+
{
|
4 |
+
public function preDispatch(Varien_Event_Observer $observer)
|
5 |
+
{
|
6 |
+
// exit('test');
|
7 |
+
if (Mage::getSingleton('admin/session')->isLoggedIn()) {
|
8 |
+
|
9 |
+
$feedModel = Mage::getModel('romcity/eacore_feed');
|
10 |
+
|
11 |
+
$feedModel->checkUpdate();
|
12 |
+
}
|
13 |
+
}
|
14 |
+
}
|
app/code/local/Eadesigndev/Romcity/Model/Mysql4/Romcity.php
CHANGED
@@ -19,6 +19,6 @@ class Eadesigndev_Romcity_Model_Mysql4_Romcity extends Mage_Core_Model_Mysql4_Ab
|
|
19 |
*/
|
20 |
public function _construct()
|
21 |
{
|
22 |
-
$this->_init('
|
23 |
}
|
24 |
}
|
19 |
*/
|
20 |
public function _construct()
|
21 |
{
|
22 |
+
$this->_init('romcity/romcity', 'city_id');
|
23 |
}
|
24 |
}
|
app/code/local/Eadesigndev/Romcity/Model/Mysql4/Romcity/Collection.php
CHANGED
@@ -17,6 +17,6 @@ class Eadesigndev_Romcity_Model_Mysql4_Romcity_Collection extends Mage_Core_Mode
|
|
17 |
*/
|
18 |
public function _construct()
|
19 |
{
|
20 |
-
$this->_init('
|
21 |
}
|
22 |
}
|
17 |
*/
|
18 |
public function _construct()
|
19 |
{
|
20 |
+
$this->_init('romcity/romcity');
|
21 |
}
|
22 |
}
|
app/code/local/Eadesigndev/Romcity/Model/Romcity.php
CHANGED
@@ -10,6 +10,6 @@ class Eadesigndev_Romcity_Model_Romcity extends Mage_Core_Model_Abstract
|
|
10 |
|
11 |
public function _construct()
|
12 |
{
|
13 |
-
$this->_init('
|
14 |
}
|
15 |
}
|
10 |
|
11 |
public function _construct()
|
12 |
{
|
13 |
+
$this->_init('romcity/romcity');
|
14 |
}
|
15 |
}
|
app/code/local/Eadesigndev/Romcity/controllers/Adminhtml/IndexController.php
CHANGED
@@ -23,4 +23,9 @@ class Eadesigndev_Romcity_Adminhtml_IndexController extends Mage_Adminhtml_Cont
|
|
23 |
|
24 |
return;
|
25 |
}
|
|
|
|
|
|
|
|
|
|
|
26 |
}
|
23 |
|
24 |
return;
|
25 |
}
|
26 |
+
|
27 |
+
protected function _isAllowed()
|
28 |
+
{
|
29 |
+
return true;
|
30 |
+
}
|
31 |
}
|
app/code/local/Eadesigndev/Romcity/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Eadesigndev_Romcity>
|
5 |
-
<version>1.0.
|
6 |
</Eadesigndev_Romcity>
|
7 |
</modules>
|
8 |
<global>
|
@@ -32,10 +32,10 @@
|
|
32 |
<customer_renderer_region>Eadesigndev_Romcity_Model_Adminhtml_Customer_Renderer_Region</customer_renderer_region>
|
33 |
</rewrite>
|
34 |
</adminhtml>
|
35 |
-
<
|
36 |
<class>Eadesigndev_Romcity_Model</class>
|
37 |
<resourceModel>romcity_mysql4</resourceModel>
|
38 |
-
</
|
39 |
<romcity_mysql4>
|
40 |
<class>Eadesigndev_Romcity_Model_Mysql4</class>
|
41 |
<entities>
|
@@ -82,15 +82,6 @@
|
|
82 |
</citydropdown>
|
83 |
</routers>
|
84 |
</frontend>
|
85 |
-
<adminhtml>
|
86 |
-
<layout>
|
87 |
-
<updates>
|
88 |
-
<romcitys module="Eadesigndev_Romcity">
|
89 |
-
<file>romcity/romcity.xml</file>
|
90 |
-
</romcitys>
|
91 |
-
</updates>
|
92 |
-
</layout>
|
93 |
-
</adminhtml>
|
94 |
<admin>
|
95 |
<routers>
|
96 |
<citydropdownadmin>
|
@@ -102,4 +93,23 @@
|
|
102 |
</citydropdownadmin>
|
103 |
</routers>
|
104 |
</admin>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
</config>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Eadesigndev_Romcity>
|
5 |
+
<version>1.0.8</version>
|
6 |
</Eadesigndev_Romcity>
|
7 |
</modules>
|
8 |
<global>
|
32 |
<customer_renderer_region>Eadesigndev_Romcity_Model_Adminhtml_Customer_Renderer_Region</customer_renderer_region>
|
33 |
</rewrite>
|
34 |
</adminhtml>
|
35 |
+
<romcity>
|
36 |
<class>Eadesigndev_Romcity_Model</class>
|
37 |
<resourceModel>romcity_mysql4</resourceModel>
|
38 |
+
</romcity>
|
39 |
<romcity_mysql4>
|
40 |
<class>Eadesigndev_Romcity_Model_Mysql4</class>
|
41 |
<entities>
|
82 |
</citydropdown>
|
83 |
</routers>
|
84 |
</frontend>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
<admin>
|
86 |
<routers>
|
87 |
<citydropdownadmin>
|
93 |
</citydropdownadmin>
|
94 |
</routers>
|
95 |
</admin>
|
96 |
+
<adminhtml>
|
97 |
+
<events>
|
98 |
+
<controller_action_predispatch>
|
99 |
+
<observers>
|
100 |
+
<eadesigndev_romcity>
|
101 |
+
<class>romcity/eacore_observer</class>
|
102 |
+
<method>preDispatch</method>
|
103 |
+
</eadesigndev_romcity>
|
104 |
+
</observers>
|
105 |
+
</controller_action_predispatch>
|
106 |
+
</events>
|
107 |
+
<layout>
|
108 |
+
<updates>
|
109 |
+
<romcitys module="Eadesigndev_Romcity">
|
110 |
+
<file>romcity/romcity.xml</file>
|
111 |
+
</romcitys>
|
112 |
+
</updates>
|
113 |
+
</layout>
|
114 |
+
</adminhtml>
|
115 |
</config>
|
app/code/local/Eadesigndev/Romcity/sql/eadsign_romcity_setup/mysql4-install-1.0.1.php
CHANGED
@@ -14,8 +14,8 @@ $installer = $this;
|
|
14 |
$installer->startSetup();
|
15 |
|
16 |
$installer->run("
|
17 |
-
DROP TABLE IF EXISTS {$this->getTable('
|
18 |
-
CREATE TABLE {$this->getTable('
|
19 |
`city_id` mediumint(8) unsigned NOT NULL auto_increment,
|
20 |
`country_id` varchar(4) NOT NULL default '0',
|
21 |
`region_id` varchar(4) NOT NULL default '0',
|
14 |
$installer->startSetup();
|
15 |
|
16 |
$installer->run("
|
17 |
+
DROP TABLE IF EXISTS {$this->getTable('romcity/romcity')};
|
18 |
+
CREATE TABLE {$this->getTable('romcity/romcity')} (
|
19 |
`city_id` mediumint(8) unsigned NOT NULL auto_increment,
|
20 |
`country_id` varchar(4) NOT NULL default '0',
|
21 |
`region_id` varchar(4) NOT NULL default '0',
|
package.xml
CHANGED
@@ -1,19 +1,19 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Eadesigndev_Romcity</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Extension license name (OSL v3.0)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>The extension will add a city drop-down for the regions that have a related list.</summary>
|
10 |
<description>The drop down will be available for all users so they do not write what they want into their orders. Only implemented for Romania for the moment.</description>
|
11 |
-
<notes>
|
12 |
-
|
13 |
<authors><author><name>EaDesign</name><user>eadesign</user><email>office@eadesign.ro</email></author></authors>
|
14 |
-
<date>2015-
|
15 |
-
<time>
|
16 |
-
<contents><target name="magelocal"><dir name="Eadesigndev"><dir name="Romcity"><dir name="Block"><dir name="Adminhtml"><dir name="Block"><dir name="Customer"><dir name="Edit"><dir name="Renderer"><file name="Region.php" hash="7d879f18affc0794c3a8989c2c203c7e"/></dir><dir name="Tab"><file name="Addresses.php" hash="
|
17 |
<compatible/>
|
18 |
<dependencies><required><php><min>5.2.0</min><max>5.6.3</max></php></required></dependencies>
|
19 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Eadesigndev_Romcity</name>
|
4 |
+
<version>1.0.8</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Extension license name (OSL v3.0)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>The extension will add a city drop-down for the regions that have a related list.</summary>
|
10 |
<description>The drop down will be available for all users so they do not write what they want into their orders. Only implemented for Romania for the moment.</description>
|
11 |
+
<notes>Minor fixes.
|
12 |
+
</notes>
|
13 |
<authors><author><name>EaDesign</name><user>eadesign</user><email>office@eadesign.ro</email></author></authors>
|
14 |
+
<date>2015-09-16</date>
|
15 |
+
<time>13:01:58</time>
|
16 |
+
<contents><target name="magelocal"><dir name="Eadesigndev"><dir name="Romcity"><dir name="Block"><dir name="Adminhtml"><dir name="Block"><dir name="Customer"><dir name="Edit"><dir name="Renderer"><file name="Region.php" hash="7d879f18affc0794c3a8989c2c203c7e"/></dir><dir name="Tab"><file name="Addresses.php" hash="0dce31f53c6d03fe0ae134c45ff75ecc"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Address"><file name="Form.php" hash="745fa16294f56aa7e94f80ac636c297a"/></dir><dir name="Create"><dir name="Billing"><file name="Address.php" hash="a2227fd097bc7ddf048501875cb6a71f"/></dir><dir name="Shipping"><file name="Address.php" hash="b6fa35c83d600ee8ccfce315bf75c409"/></dir></dir></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="6b14795d2f427c3c805a4145203650f7"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="Customer"><dir name="Renderer"><file name="Region.php" hash="926fe1ce242e3c80c299e57a455d333b"/></dir></dir><dir name="Render"><file name="City.php" hash="45d76e7549acfef46f2756108eab69ca"/><file name="Cityorder.php" hash="a199d056cd3833a35b896f2bfd2e35a1"/></dir></dir><dir name="Eacore"><file name="Feed.php" hash="cfab5b7224f002e7c59132db6dd9613b"/><file name="Observer.php" hash="e5ffa9e449d99249acf1ae24054d68ed"/></dir><dir name="Mysql4"><dir name="Romcity"><file name="Collection.php" hash="05bfb0f8a26e028da0ad7f6623f1f3dc"/></dir><file name="Romcity.php" hash="5952a4da56e01cb908c5179479c8a019"/></dir><file name="Romcity.php" hash="06d625efc9bcff9a56d6ea97dfb37f43"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="IndexController.php" hash="cc840faf05e2bfd90a2ea0ac3aa0ee1a"/></dir><file name="IndexController.php" hash="5d2d316cf019f60c3411145bc5deca57"/></dir><dir name="etc"><file name="config.xml" hash="542d26a1c8f6ee7e658fbeec550d04af"/></dir><dir name="sql"><dir name="eadsign_romcity_setup"><file name="mysql4-install-1.0.1.php" hash="4fe67567ff8dcf9a217230f591e62a24"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Eadesigndev_Romcity.xml" hash="0a6745536b4c7f5cacc734af08e714af"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="romcity"><file name="romcity.xml" hash="ab933fa5a4963a820fbc4b4658585342"/></dir></dir><dir name="template"><dir name="romcity"><dir name="customer"><dir name="tab"><file name="addresses.phtml" hash="3ca5f698b59e3cb44a070c38d64ff6a3"/></dir></dir><dir name="sales"><dir name="order"><dir name="address"><file name="form.phtml" hash="ec2f32f0d0d58aa9412f8ab337d4e57e"/></dir><dir name="create"><dir name="form"><file name="address.phtml" hash="3b7a428aacbc08787a566a3541718732"/><file name="ship_address.phtml" hash="cfd57cd941345532465d06d8c3ddc8e1"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="romcity"><file name="romcity.xml" hash="dadee20e5c0e6d6837fe52b72af640ad"/></dir></dir><dir name="template"><dir name="romcity"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="6ef682728aa1d5ba7e4faa56c256d344"/><file name="shipping.phtml" hash="52c5235bc8e75c7aea7a18dd5567c258"/></dir></dir><dir name="customer"><dir name="address"><file name="edit.phtml" hash="54aa4dec49676e1924897bd9eeb3f279"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="eadesign"><dir name="romcity"><file name="field.js" hash="7df31b55764a8a82715f0d18db52c40c"/></dir></dir></dir></target></contents>
|
17 |
<compatible/>
|
18 |
<dependencies><required><php><min>5.2.0</min><max>5.6.3</max></php></required></dependencies>
|
19 |
</package>
|