-
-
Notifications
You must be signed in to change notification settings - Fork 437
/
config.xml
103 lines (103 loc) · 3.56 KB
/
config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?xml version="1.0"?>
<!--
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE_AFL.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magento.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magento.com for more information.
*
* @category Mage
* @package Mage_AdminNotification
* @copyright Copyright (c) 2006-2019 Magento, Inc. (http://www.magento.com)
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
*/
-->
<config>
<modules>
<Mage_AdminNotification>
<version>1.6.0.0</version>
</Mage_AdminNotification>
</modules>
<global>
<models>
<adminnotification>
<class>Mage_AdminNotification_Model</class>
<resourceModel>adminnotification_resource</resourceModel>
</adminnotification>
<adminnotification_resource>
<class>Mage_AdminNotification_Model_Resource</class>
<deprecatedNode>adminnotification_mysql4</deprecatedNode>
<entities>
<inbox>
<table>adminnotification_inbox</table>
</inbox>
</entities>
</adminnotification_resource>
</models>
<helpers>
<adminnotification>
<class>Mage_AdminNotification_Helper</class>
</adminnotification>
</helpers>
<resources>
<adminnotification_setup>
<setup>
<module>Mage_AdminNotification</module>
</setup>
</adminnotification_setup>
</resources>
</global>
<adminhtml>
<translate>
<modules>
<Mage_AdminNotification>
<files>
<default>Mage_AdminNotification.csv</default>
</files>
</Mage_AdminNotification>
</modules>
</translate>
<events>
<controller_action_predispatch>
<observers>
<adminnotification>
<class>adminnotification/observer</class>
<method>preDispatch</method>
</adminnotification>
</observers>
</controller_action_predispatch>
</events>
<layout>
<updates>
<adminnotification>
<file>adminnotification.xml</file>
</adminnotification>
</updates>
</layout>
</adminhtml>
<default>
<system>
<adminnotification>
<feed_url>notifications.magentocommerce.com/community/notifications.rss</feed_url>
<popup_url>widgets.magentocommerce.com/notificationPopup</popup_url>
<severity_icons_url>widgets.magentocommerce.com/%s/%s.gif</severity_icons_url>
<use_https>0</use_https>
<frequency>1</frequency>
<last_update>0</last_update>
</adminnotification>
</system>
</default>
</config>