desktop_notification - Version 0.1.3

Version Notes

patch supee 6788

Download this release

Release Info

Developer Biztech
Extension desktop_notification
Version 0.1.3
Comparing to
See all releases


Code changes from version 0.1.2 to 0.1.3

DesktopNotificaion.pdf DELETED
Binary file
app/code/local/Biztech/All/Helper/Data.php DELETED
@@ -1,6 +0,0 @@
1
- <?php
2
-
3
- class Biztech_All_Helper_Data extends Mage_Core_Helper_Abstract
4
- {
5
-
6
- }
 
 
 
 
 
 
app/code/local/Biztech/All/Model/All.php DELETED
@@ -1,10 +0,0 @@
1
- <?php
2
-
3
- class Biztech_All_Model_All extends Mage_Core_Model_Abstract
4
- {
5
- public function _construct()
6
- {
7
- parent::_construct();
8
- $this->_init('all/all');
9
- }
10
- }
 
 
 
 
 
 
 
 
 
 
app/code/local/Biztech/All/Model/Mysql4/All.php DELETED
@@ -1,10 +0,0 @@
1
- <?php
2
-
3
- class Biztech_All_Model_Mysql4_All extends Mage_Core_Model_Mysql4_Abstract
4
- {
5
- public function _construct()
6
- {
7
- // Note that the all_id refers to the key field in your database table.
8
- $this->_init('all/all', 'all_id');
9
- }
10
- }
 
 
 
 
 
 
 
 
 
 
app/code/local/Biztech/All/Model/Mysql4/All/Collection.php DELETED
@@ -1,10 +0,0 @@
1
- <?php
2
-
3
- class Biztech_All_Model_Mysql4_All_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
4
- {
5
- public function _construct()
6
- {
7
- parent::_construct();
8
- $this->_init('all/all');
9
- }
10
- }
 
 
 
 
 
 
 
 
 
 
app/code/local/Biztech/All/Model/Source/Updates/Type.php DELETED
@@ -1,50 +0,0 @@
1
- <?php
2
- /**
3
-
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the EULA
8
- * that is bundled with this package in the file LICENSE.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- */
11
-
12
- class Biztech_All_Model_Source_Updates_Type extends Mage_Eav_Model_Entity_Attribute_Source_Abstract
13
- {
14
- const TYPE_UPDATE_RELEASE = 'UPDATE_RELEASE';
15
- const TYPE_INSTALLED_UPDATE = 'INSTALLED_UPDATE';
16
- public function toOptionArray()
17
- {
18
- return array(
19
- array('value' => self::TYPE_INSTALLED_UPDATE, 'label' => Mage::helper('all')->__('My extensions updates')),
20
- array('value' => self::TYPE_UPDATE_RELEASE, 'label' => Mage::helper('all')->__('All extensions updates')),
21
- );
22
- }
23
-
24
- public function getAllOptions()
25
- {
26
- return $this->toOptionArray();
27
- }
28
-
29
-
30
- public function getLabel($value)
31
- {
32
- $options = $this->toOptionArray();
33
- foreach ($options as $v) {
34
- if ($v['value'] == $value) {
35
- return $v['label'];
36
- }
37
- }
38
- return '';
39
- }
40
-
41
- public function getGridOptions()
42
- {
43
- $items = $this->getAllOptions();
44
- $out = array();
45
- foreach ($items as $item) {
46
- $out[$item['value']] = $item['label'];
47
- }
48
- return $out;
49
- }
50
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/local/Biztech/All/Model/Status.php DELETED
@@ -1,15 +0,0 @@
1
- <?php
2
-
3
- class Biztech_All_Model_Status extends Varien_Object
4
- {
5
- const STATUS_ENABLED = 1;
6
- const STATUS_DISABLED = 2;
7
-
8
- static public function getOptionArray()
9
- {
10
- return array(
11
- self::STATUS_ENABLED => Mage::helper('all')->__('Enabled'),
12
- self::STATUS_DISABLED => Mage::helper('all')->__('Disabled')
13
- );
14
- }
15
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/local/Biztech/All/Model/Update.php DELETED
@@ -1,93 +0,0 @@
1
- <?php
2
-
3
- class Biztech_All_Model_Update extends Mage_Core_Helper_Abstract
4
- {
5
-
6
- const UPDATE_NOTIFICATION_FEED_URL = 'http://store.biztechconsultancy.com/rss/catalog/new/store_id/1/';
7
- public function getInterests()
8
- {
9
- $types = @explode(',', Mage::getStoreConfig('all/all_general/interests'));
10
- return $types;
11
- }
12
- public function isExtensionInstalled($code)
13
- {
14
-
15
- $modules = array_keys((array)Mage::getConfig()->getNode('modules')->children());
16
- foreach ($modules as $moduleName) {
17
- if ($moduleName == $code) {
18
- return true;
19
- }
20
- }
21
- return false;
22
- }
23
-
24
- public function check()
25
- {
26
- if ((time() - Mage::app()->loadCache('biztech_all_updates_feed_lastcheck')) > Mage::getStoreConfig('all/all_general/check_frequency')) {
27
- $this->refresh();
28
- }
29
- }
30
-
31
- public function refresh()
32
- {
33
- $types = array();
34
- $feedData = array();
35
- $extensio_module = array();
36
- try{
37
- $xml = false;
38
- $limit_context = stream_context_create(array('http'=>array('timeout' => 5)));
39
- $xml = file_get_contents(self::UPDATE_NOTIFICATION_FEED_URL,true,$limit_context);
40
- $xml = simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA);//LIBXML_NOCDATA LIBXML_NOWARNING
41
-
42
- if($xml != false){
43
- $interests = $this->getInterests();
44
- if(!empty($interests[0])){
45
- $isInterestedInSelfUpgrades = in_array(Biztech_All_Model_Source_Updates_Type::TYPE_INSTALLED_UPDATE, $interests);
46
- $isInterestedInAllUpgrades = in_array(Biztech_All_Model_Source_Updates_Type::TYPE_UPDATE_RELEASE, $interests);
47
- $modules = Mage::getConfig()->getNode('modules')->children();
48
- $modulesArray = (array)$modules;
49
- foreach($xml->channel->item as $keys=>$extensions) {
50
- $types[] = (string) $extensions->update_notifications->type;
51
- $extensions_name = (string)$extensions->update_notifications->extensions;
52
-
53
- if((string)$extensions->update_notifications->date!=""&&(string)$extensions->update_notifications->extension_title!=""&&(string)$extensions->update_notifications->extension_content!=""&&(string)$extensions->update_notifications->product_url!=""){
54
- if(!$isInterestedInAllUpgrades){
55
- if ($this->isExtensionInstalled($extensions_name)) {
56
- $feedData[] = array(
57
- 'severity' => 4,
58
- 'date_added' => (string) $extensions->update_notifications->date,
59
- 'title' => (string)$extensions->update_notifications->extension_title,
60
- 'description' => (string)$extensions->update_notifications->extension_content,
61
- 'url' => (string)$extensions->update_notifications->product_url,
62
- );
63
- }
64
- } else{
65
- $feedData[] = array(
66
- 'severity' => 4,
67
- 'date_added' => (string)$extensions->update_notifications->date,
68
- 'title' => (string)$extensions->update_notifications->extension_title,
69
- 'description' => (string)$extensions->update_notifications->extension_content,
70
- 'url' => (string)$extensions->update_notifications->product_url,
71
- );
72
- }
73
- }
74
- }
75
- if ($feedData) {
76
- foreach($feedData as $data){
77
- if ((array_intersect($types,$interests) && $isInterestedInSelfUpgrades)) {
78
- Mage::getModel('adminnotification/inbox')->parse(array_reverse(array($data)));
79
- }
80
- }
81
- }
82
- Mage::app()->saveCache(time(), 'biztech_all_updates_feed_lastcheck');
83
- return true;
84
- }
85
- } else{
86
- return false;
87
- }
88
-
89
- }catch (Exception $e) {
90
- Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
91
- }
92
- }
93
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/local/Biztech/All/etc/config.xml DELETED
@@ -1,120 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * @category Biztech
5
- * @package Biztech_All
6
- * @author ModuleCreator
7
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
8
- */
9
- -->
10
- <config>
11
- <modules>
12
- <Biztech_All>
13
- <version>0.1.0</version>
14
- </Biztech_All>
15
- </modules>
16
- <frontend>
17
- <routers>
18
- <all>
19
- <use>standard</use>
20
- <args>
21
- <module>Biztech_All</module>
22
- <frontName>all</frontName>
23
- </args>
24
- </all>
25
- </routers>
26
- </frontend>
27
- <admin>
28
- <routers>
29
- <all>
30
- <use>admin</use>
31
- <args>
32
- <module>Biztech_All</module>
33
- <frontName>all</frontName>
34
- </args>
35
- </all>
36
- </routers>
37
- </admin>
38
- <adminhtml>
39
- <acl>
40
- <resources>
41
- <all>
42
- <title>Allow Everything</title>
43
- </all>
44
- <admin>
45
- <children>
46
- <Biztech_All>
47
- <title>All Module</title>
48
- <sort_order>10</sort_order>
49
- </Biztech_All>
50
- </children>
51
- </admin>
52
- </resources>
53
- </acl>
54
- <events>
55
- <controller_action_predispatch>
56
- <observers>
57
-
58
- <bzall_upds>
59
- <type>singleton</type>
60
- <class>all/update</class>
61
- <method>check</method>
62
- </bzall_upds>
63
- </observers>
64
- </controller_action_predispatch>
65
- </events>
66
- </adminhtml>
67
- <global>
68
- <models>
69
- <all>
70
- <class>Biztech_All_Model</class>
71
- <resourceModel>all_mysql4</resourceModel>
72
- </all>
73
- <all_mysql4>
74
- <class>Biztech_All_Model_Mysql4</class>
75
- <entities>
76
- <all>
77
- <table>all</table>
78
- </all>
79
- </entities>
80
- </all_mysql4>
81
- </models>
82
- <resources>
83
- <all_setup>
84
- <setup>
85
- <module>Biztech_All</module>
86
- </setup>
87
- <connection>
88
- <use>core_setup</use>
89
- </connection>
90
- </all_setup>
91
- <all_write>
92
- <connection>
93
- <use>core_write</use>
94
- </connection>
95
- </all_write>
96
- <all_read>
97
- <connection>
98
- <use>core_read</use>
99
- </connection>
100
- </all_read>
101
- </resources>
102
- <blocks>
103
- <all>
104
- <class>Biztech_All_Block</class>
105
- </all>
106
- </blocks>
107
- <helpers>
108
- <all>
109
- <class>Biztech_All_Helper</class>
110
- </all>
111
- </helpers>
112
- </global>
113
- <default>
114
- <all>
115
- <all_general>
116
- <check_frequency>86400</check_frequency>
117
- </all_general>
118
- </all>
119
- </default>
120
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/local/Biztech/All/etc/system.xml DELETED
@@ -1,46 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" ?>
2
- <config>
3
- <tabs>
4
- <biztech translate="label" module="all">
5
- <label>Biztech Extensions</label>
6
- <sort_order>400</sort_order>
7
- </biztech>
8
- </tabs>
9
- <sections>
10
- <all translate="label" module="all">
11
- <label>Info</label>
12
- <tab>biztech</tab>
13
- <frontend_type>text</frontend_type>
14
- <sort_order>10</sort_order>
15
- <show_in_default>1</show_in_default>
16
- <show_in_website>1</show_in_website>
17
- <show_in_store>1</show_in_store>
18
- <groups>
19
-
20
- <all_general translate="label">
21
- <label>General</label>
22
- <frontend_type>text</frontend_type>
23
- <sort_order>10</sort_order>
24
- <show_in_default>1</show_in_default>
25
- <show_in_website>1</show_in_website>
26
- <show_in_store>1</show_in_store>
27
- <fields>
28
-
29
- <interests translate="label">
30
- <label>I'd like to be informed by Biztech about:</label>
31
- <comment></comment>
32
- <frontend_type>multiselect</frontend_type>
33
- <sort_order>100</sort_order>
34
- <show_in_default>1</show_in_default>
35
- <show_in_website>1</show_in_website>
36
- <show_in_store>1</show_in_store>
37
- <can_be_empty>1</can_be_empty>
38
- <source_model>all/source_updates_type</source_model>
39
- </interests>
40
-
41
- </fields>
42
- </all_general>
43
- </groups>
44
- </all>
45
- </sections>
46
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/local/Biztech/Desktopnotification/controllers/Adminhtml/DesktopnotificationController.php CHANGED
@@ -50,4 +50,8 @@
50
  $e->getMessage();
51
  }
52
  }
 
 
 
 
53
  }
50
  $e->getMessage();
51
  }
52
  }
53
+
54
+ protected function _isAllow(){
55
+ return true;
56
+ }
57
  }
app/code/local/Biztech/Desktopnotification/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Biztech_Desktopnotification>
5
- <version>0.1.2</version>
6
  </Biztech_Desktopnotification>
7
  </modules>
8
  <frontend>
@@ -23,20 +23,20 @@
23
  </updates>
24
  </layout>
25
  </frontend>
 
26
  <admin>
27
  <routers>
28
- <desktopnotification>
29
- <use>admin</use>
30
- <args>
31
- <module>Biztech_Desktopnotification</module>
32
- <frontName>desktopnotification</frontName>
33
- </args>
34
- </desktopnotification>
35
  </routers>
36
  </admin>
 
37
  <adminhtml>
38
- <menu>
39
- </menu>
40
  <acl>
41
  <resources>
42
  <all>
2
  <config>
3
  <modules>
4
  <Biztech_Desktopnotification>
5
+ <version>0.1.3</version>
6
  </Biztech_Desktopnotification>
7
  </modules>
8
  <frontend>
23
  </updates>
24
  </layout>
25
  </frontend>
26
+
27
  <admin>
28
  <routers>
29
+ <adminhtml>
30
+ <args>
31
+ <modules>
32
+ <desktopnotification after="Mage_Adminhtml">Biztech_Desktopnotification_Adminhtml</desktopnotification>
33
+ </modules>
34
+ </args>
35
+ </adminhtml>
36
  </routers>
37
  </admin>
38
+
39
  <adminhtml>
 
 
40
  <acl>
41
  <resources>
42
  <all>
app/etc/modules/Biztech_All.xml DELETED
@@ -1,52 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * @category Biztech
5
- * @package Biztech_All
6
- * @author ModuleCreator
7
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
8
- */
9
- -->
10
- <config>
11
- <modules>
12
- <Biztech_All>
13
- <active>false</active>
14
- <codePool>local</codePool>
15
- </Biztech_All>
16
- </modules>
17
- <adminhtml>
18
- <acl>
19
- <resources>
20
- <all>
21
- <title>Allow Everything</title>
22
- </all>
23
- <admin>
24
- <children>
25
- <Biztech_All>
26
- <title>All</title>
27
- <sort_order>10</sort_order>
28
- </Biztech_All>
29
- <system>
30
- <children>
31
- <config>
32
- <children>
33
- <all>
34
- <title>All</title>
35
- </all>
36
- </children>
37
- </config>
38
- </children>
39
- </system>
40
- </children>
41
- </admin>
42
- </resources>
43
- </acl>
44
- <layout>
45
- <updates>
46
- <all>
47
- <file>all.xml</file>
48
- </all>
49
- </updates>
50
- </layout>
51
- </adminhtml>
52
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>desktop_notification</name>
4
- <version>0.1.2</version>
5
- <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Desktop Notification extension for getting in admin side notification when order placed</summary>
10
- <description>Desktop Notification extension is a Magento extension that pops up message to the admin of the store, on being online and any order is placed by someone. In the event of admin being off line the notifications of order placement gets queued up for display when the admin comes online. </description>
11
- <notes>new release</notes>
12
  <authors><author><name>Biztech</name><user>biztechcon</user><email>sales@biztechconsultancy.com</email></author></authors>
13
- <date>2015-10-29</date>
14
- <time>12:00:50</time>
15
- <contents><target name="mageetc"><dir name="modules"><file name="Biztech_Desktopnotification.xml" hash="ffa573d2490131e332e726a7d54e0c0f"/><file name="Biztech_All.xml" hash="11e78a14608642de817d638ba7df96bd"/></dir></target><target name="magelocal"><dir name="Biztech"><dir name="Desktopnotification"><dir name="Block"><dir name="Adminhtml"><file name="Desktopnotification.php" hash="1cbf6342b755ec8cddf06eb066bf58cc"/><dir name="Page"><file name="Footer.php" hash="c591eb6333eb913cd3036162fa220c64"/></dir></dir><file name="Desktopnotification.php" hash="49c768f239b7e5ac924c7ca81d478e9a"/></dir><dir name="Helper"><file name="Data.php" hash="3d186311d6d9dd3d35d5c03e8d63a992"/></dir><dir name="Model"><file name="Desktopnotification.php" hash="29e2e17f99d8572acf60b1af46c7ce62"/><dir name="Mysql4"><dir name="Desktopnotification"><file name="Collection.php" hash="8d7e1971482ab391a15938651fc2707b"/></dir><file name="Desktopnotification.php" hash="63ec61b76adab39d8aeea0c65b6805c2"/></dir><file name="Notificationicon.php" hash="dbaf5edc778fd78fe646892d5ab099d1"/><file name="Observer.php" hash="17a00269fc65c40ce3001d4ced311522"/><file name="Status.php" hash="e91b3cd16956bf5de2c072e8a4b1ecce"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="DesktopnotificationController.php" hash="21b5a3ebc0b85b322a7d59ad4c04dffc"/></dir><file name="IndexController.php" hash="23b04a6df6e269a83fd13ddd4b303152"/></dir><dir name="etc"><file name="config.xml" hash="9617f11d53f81249eb3cd29b7e686651"/><file name="system.xml" hash="a881419fde69f2a4ddc5af1cf7dcde51"/></dir><dir name="sql"><dir name="desktopnotification_setup"><file name="mysql4-install-0.1.0.php" hash="30bec82f11dcad2704472d63ca55b9c8"/></dir></dir></dir><dir name="All"><dir name="Helper"><file name="Data.php" hash="e856726fd089e7f73ca7de450b696419"/></dir><dir name="Model"><file name="All.php" hash="a9aeeb9c6d7be9cf20414f405efc878d"/><dir name="Mysql4"><dir name="All"><file name="Collection.php" hash="a1909236183d126f38e628b85bb57e81"/></dir><file name="All.php" hash="f02542393eb26eadfb9b92d901d2ac12"/></dir><dir name="Source"><dir name="Updates"><file name="Type.php" hash="fa695bf4764c2d93c7436ed54bde89ba"/></dir></dir><file name="Status.php" hash="30a6f0da7d9d45e1082da532d5f8dabc"/><file name="Update.php" hash="8be940508b4ee734bf244ccdca9026ea"/></dir><dir name="etc"><file name="config.xml" hash="b6e9f1237b01397baec252c52bcb0ae4"/><file name="system.xml" hash="17262087dc933d934e09ac04cafb4c51"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="desktopnotification"><file name="footer.phtml" hash="71088dfeb0cf1a58cec875d0812ddf27"/><file name="ordernotification.phtml" hash="6960d8ea148f7b2a9d8b920cbc4563e1"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="."><file name="DesktopNotificaion.pdf" hash="66bee11b3612991bc16e7c9dd079fbf0"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>desktop_notification</name>
4
+ <version>0.1.3</version>
5
+ <stability>devel</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Desktop Notification extension for getting in admin side notification when order placed</summary>
10
+ <description>Desktop Notification extension is a Magento extension that pops up message to the admin of the store, on being online and any order is placed by someone. In the event of admin being off line the notifications of order placement gets queued up for display when the admin comes online.</description>
11
+ <notes>patch supee 6788 </notes>
12
  <authors><author><name>Biztech</name><user>biztechcon</user><email>sales@biztechconsultancy.com</email></author></authors>
13
+ <date>2016-01-06</date>
14
+ <time>04:45:02</time>
15
+ <contents><target name="magelocal"><dir name="Biztech"><dir name="Desktopnotification"><dir name="Block"><dir name="Adminhtml"><file name="Desktopnotification.php" hash="1cbf6342b755ec8cddf06eb066bf58cc"/><dir name="Page"><file name="Footer.php" hash="c591eb6333eb913cd3036162fa220c64"/></dir></dir><file name="Desktopnotification.php" hash="49c768f239b7e5ac924c7ca81d478e9a"/></dir><dir name="Helper"><file name="Data.php" hash="3d186311d6d9dd3d35d5c03e8d63a992"/></dir><dir name="Model"><file name="Desktopnotification.php" hash="29e2e17f99d8572acf60b1af46c7ce62"/><dir name="Mysql4"><dir name="Desktopnotification"><file name="Collection.php" hash="8d7e1971482ab391a15938651fc2707b"/></dir><file name="Desktopnotification.php" hash="63ec61b76adab39d8aeea0c65b6805c2"/></dir><file name="Notificationicon.php" hash="dbaf5edc778fd78fe646892d5ab099d1"/><file name="Observer.php" hash="17a00269fc65c40ce3001d4ced311522"/><file name="Status.php" hash="e91b3cd16956bf5de2c072e8a4b1ecce"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="DesktopnotificationController.php" hash="0a0cca71afb007d571926ca0b6b3f9a9"/></dir><file name="IndexController.php" hash="23b04a6df6e269a83fd13ddd4b303152"/></dir><dir name="etc"><file name="config.xml" hash="f3ad50bcadd22d57030328e22c462754"/><file name="system.xml" hash="a881419fde69f2a4ddc5af1cf7dcde51"/></dir><dir name="sql"><dir name="desktopnotification_setup"><file name="mysql4-install-0.1.0.php" hash="30bec82f11dcad2704472d63ca55b9c8"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="desktopnotification"><file name="footer.phtml" hash="71088dfeb0cf1a58cec875d0812ddf27"/><file name="ordernotification.phtml" hash="6960d8ea148f7b2a9d8b920cbc4563e1"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Biztech_Desktopnotification.xml" hash="ffa573d2490131e332e726a7d54e0c0f"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>