Version Notes
Full compatibility with Clockwork API and cash balances.
Download this release
Release Info
Developer | Mediaburst |
Extension | Mediaburst_SMS |
Version | 2.0.0 |
Comparing to | |
See all releases |
Code changes from version 1.2.1 to 2.0.0
- app/code/community/Mediaburst/.DS_Store +0 -0
- app/code/community/Mediaburst/Sms/Block/CreditReportGrid.php +3 -3
- app/code/community/Mediaburst/Sms/LICENSE.md +5 -0
- app/code/community/Mediaburst/Sms/Model/Api.php +16 -4
- app/code/community/Mediaburst/Sms/Model/Observer.php +1 -1
- app/code/community/Mediaburst/Sms/README.md +71 -0
- app/code/community/Mediaburst/Sms/etc/adminhtml.xml +3 -3
- app/code/community/Mediaburst/Sms/etc/config.xml +2 -4
- app/design/adminhtml/default/default/layout/mediaburst/sms.xml +0 -78
- app/etc/modules/MediaBurst_Sms.xml +0 -15
- package.xml +14 -14
app/code/community/Mediaburst/.DS_Store
ADDED
Binary file
|
app/code/community/Mediaburst/Sms/Block/CreditReportGrid.php
CHANGED
@@ -110,7 +110,7 @@ class Mediaburst_Sms_Block_CreditReportGrid extends Mage_Adminhtml_Block_Widget_
|
|
110 |
$this->addColumn(
|
111 |
'credits',
|
112 |
array(
|
113 |
-
'header' => $this->__('
|
114 |
'index' => 'credits',
|
115 |
'filter' => false,
|
116 |
)
|
@@ -127,8 +127,8 @@ class Mediaburst_Sms_Block_CreditReportGrid extends Mage_Adminhtml_Block_Widget_
|
|
127 |
$container->addButton(
|
128 |
'buy',
|
129 |
array(
|
130 |
-
'label' => $this->__('Buy'),
|
131 |
-
'onclick' => 'setLocation(\'
|
132 |
'class' => 'add',
|
133 |
)
|
134 |
);
|
110 |
$this->addColumn(
|
111 |
'credits',
|
112 |
array(
|
113 |
+
'header' => $this->__('Balance'),
|
114 |
'index' => 'credits',
|
115 |
'filter' => false,
|
116 |
)
|
127 |
$container->addButton(
|
128 |
'buy',
|
129 |
array(
|
130 |
+
'label' => $this->__('Buy Messages'),
|
131 |
+
'onclick' => 'setLocation(\'http://www.clockworksms.com/platforms/magento/?utm_source=magentoadmin&utm_medium=plugin&utm_campaign=magento\')',
|
132 |
'class' => 'add',
|
133 |
)
|
134 |
);
|
app/code/community/Mediaburst/Sms/LICENSE.md
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Copyright (C) 2012, Mediaburst Limited.
|
2 |
+
|
3 |
+
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
4 |
+
|
5 |
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
app/code/community/Mediaburst/Sms/Model/Api.php
CHANGED
@@ -201,7 +201,7 @@ class Mediaburst_Sms_Model_Api extends Zend_Service_Abstract
|
|
201 |
|
202 |
$client = $this->getHttpClient();
|
203 |
$client->resetParameters(true);
|
204 |
-
$client->setUri($this->_config->getCheckUrl());
|
205 |
$client->setParameterPost('key', $this->_config->getKey());
|
206 |
|
207 |
$response = $client->request(Zend_Http_Client::POST);
|
@@ -209,9 +209,21 @@ class Mediaburst_Sms_Model_Api extends Zend_Service_Abstract
|
|
209 |
if ($response->isSuccessful()) {
|
210 |
$body = $response->getBody();
|
211 |
$this->_config->log($body, Zend_Log::DEBUG);
|
212 |
-
|
213 |
-
|
214 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
}
|
216 |
}
|
217 |
|
201 |
|
202 |
$client = $this->getHttpClient();
|
203 |
$client->resetParameters(true);
|
204 |
+
$client->setUri( str_replace( 'credit', 'balance', $this->_config->getCheckUrl() ) );
|
205 |
$client->setParameterPost('key', $this->_config->getKey());
|
206 |
|
207 |
$response = $client->request(Zend_Http_Client::POST);
|
209 |
if ($response->isSuccessful()) {
|
210 |
$body = $response->getBody();
|
211 |
$this->_config->log($body, Zend_Log::DEBUG);
|
212 |
+
preg_match( '/Balance: ([0-9]+\.[0-9]{2}) \(([A-Z]+)\)/', $body, $matches );
|
213 |
+
|
214 |
+
switch( $matches[2] ) {
|
215 |
+
case 'GBP':
|
216 |
+
$credits = '£' . $matches[1];
|
217 |
+
break;
|
218 |
+
case 'USD':
|
219 |
+
$credits = '$' . $matches[1];
|
220 |
+
break;
|
221 |
+
case 'EUR':
|
222 |
+
$credits = '€' . $matches[1];
|
223 |
+
break;
|
224 |
+
default:
|
225 |
+
$credits = '£' . $matches[1];
|
226 |
+
break;
|
227 |
}
|
228 |
}
|
229 |
|
app/code/community/Mediaburst/Sms/Model/Observer.php
CHANGED
@@ -137,7 +137,7 @@ class Mediaburst_Sms_Model_Observer
|
|
137 |
if ($this->getHelper()->isActive($store)) {
|
138 |
$key = $this->getHelper()->getKey($store);
|
139 |
$url = $this->getHelper()->getSendUrl($store);
|
140 |
-
$hash = md5($
|
141 |
|
142 |
if (!isset($runs[$hash])) {
|
143 |
$runs[$hash] = array(
|
137 |
if ($this->getHelper()->isActive($store)) {
|
138 |
$key = $this->getHelper()->getKey($store);
|
139 |
$url = $this->getHelper()->getSendUrl($store);
|
140 |
+
$hash = md5($key . ':' . $url);
|
141 |
|
142 |
if (!isset($runs[$hash])) {
|
143 |
$runs[$hash] = array(
|
app/code/community/Mediaburst/Sms/README.md
ADDED
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Clockwork plugin for Magento
|
2 |
+
|
3 |
+
This is the Clockwork plugin for Magento.
|
4 |
+
|
5 |
+
## Installing the plugin
|
6 |
+
|
7 |
+
These files should be placed in `app/code/community/Mediaburst/Sms` in your Magento installation.
|
8 |
+
|
9 |
+
You can also install the most recent release of the plugin from Magento Commerce ([http://www.magentocommerce.com/magento-connect/mediaburst-sms-9183.html][1]) and then paste the extension key in System -> Magento Connect.
|
10 |
+
|
11 |
+
## Packaging the plugin
|
12 |
+
|
13 |
+
1. Go to System -> Magento Connect -> Package Extensions.
|
14 |
+
2. Use the below details to package the plugin.
|
15 |
+
3. Click 'Save Data and Create Package'
|
16 |
+
4. The package (.tgz file) will be in var/connect/ in your Magento install.
|
17 |
+
5.
|
18 |
+
|
19 |
+
### Package Info
|
20 |
+
|
21 |
+
**Name:** Mediaburst_SMS
|
22 |
+
**Channel:** Community
|
23 |
+
**Supported Releases:** 1.5.0.0 & later
|
24 |
+
**Summary:** Send order status and shipping text messages automatically.
|
25 |
+
**Description:**
|
26 |
+
|
27 |
+
<h2>Clockwork SMS</h2>
|
28 |
+
<p>The Clockwork SMS add-on enables Magento to send text messages to you and your customers whenever an order status changes.</p>
|
29 |
+
<ul>
|
30 |
+
<li>Your website can send you a text when somebody places an order.</li>
|
31 |
+
<li>Send you customer a text when you ship their order</li>
|
32 |
+
<li>Notify your customer if shipping is delayed.</li>
|
33 |
+
</ul>
|
34 |
+
<p>To use the plugin you need to sign up for a <a href="https://www.clockworksms.com/?utm_source=plugin&utm_medium=magento&utm_campaign=magento">Clockwork SMS API</a> account. Mediaburst SMS API is a premium service using network connected SMS routes (it doesnt use the free email to SMS routes). This means you can deliver text messages to over 400 networks in over 150 countries around the world with high throughput and super fast delivery.</p>
|
35 |
+
<p>The price for a Clockwork account is 5p per text message irrespective of which country you are sending to.</p>
|
36 |
+
|
37 |
+
**License:** ISC
|
38 |
+
**License URL:** http://opensource.org/licenses/isc-license.txt
|
39 |
+
|
40 |
+
### Authors
|
41 |
+
|
42 |
+
**Name:** Mediaburst
|
43 |
+
**User:** mediaburst
|
44 |
+
**Email:** hello@mediaburst.co.uk
|
45 |
+
|
46 |
+
### Dependencies
|
47 |
+
|
48 |
+
**Minimum PHP Version:** 5.1.0
|
49 |
+
**Maximum PHP Version:** 6.0.0
|
50 |
+
|
51 |
+
### Contents
|
52 |
+
|
53 |
+
<table>
|
54 |
+
<tr>
|
55 |
+
<th>Target</th>
|
56 |
+
<th>Path</th>
|
57 |
+
<th>Type</th>
|
58 |
+
</tr>
|
59 |
+
<tr>
|
60 |
+
<td>Magento Community module file</td>
|
61 |
+
<td>Mediaburst</td>
|
62 |
+
<td>Recursive Dir</td>
|
63 |
+
</tr>
|
64 |
+
</table>
|
65 |
+
|
66 |
+
## Troubleshooting
|
67 |
+
|
68 |
+
* Clear/disable the caches in Magento (System -> Cache Management), and logout of the Admin Panel.
|
69 |
+
* Magento is iffy about letting you login when your URL doesn't have dots in it. Don't install it on localhost, instead use a virtual host such as magento.dev.
|
70 |
+
|
71 |
+
[1]: http://www.magentocommerce.com/magento-connect/mediaburst-sms-9183.html
|
app/code/community/Mediaburst/Sms/etc/adminhtml.xml
CHANGED
@@ -23,7 +23,7 @@
|
|
23 |
<sort_order>300</sort_order>
|
24 |
</failed>
|
25 |
<check translate="title">
|
26 |
-
<title>View/Buy
|
27 |
<action>adminhtml/mediaburst_sms/check</action>
|
28 |
<sort_order>400</sort_order>
|
29 |
</check>
|
@@ -55,7 +55,7 @@
|
|
55 |
<sort_order>130</sort_order>
|
56 |
</failed>
|
57 |
<check translate="title">
|
58 |
-
<title>View/Buy
|
59 |
<sort_order>140</sort_order>
|
60 |
</check>
|
61 |
<send translate="title">
|
@@ -79,7 +79,7 @@
|
|
79 |
<config>
|
80 |
<children>
|
81 |
<mediaburst_sms translate="title">
|
82 |
-
<title>
|
83 |
</mediaburst_sms>
|
84 |
</children>
|
85 |
</config>
|
23 |
<sort_order>300</sort_order>
|
24 |
</failed>
|
25 |
<check translate="title">
|
26 |
+
<title>View/Buy Messages</title>
|
27 |
<action>adminhtml/mediaburst_sms/check</action>
|
28 |
<sort_order>400</sort_order>
|
29 |
</check>
|
55 |
<sort_order>130</sort_order>
|
56 |
</failed>
|
57 |
<check translate="title">
|
58 |
+
<title>View/Buy Messages</title>
|
59 |
<sort_order>140</sort_order>
|
60 |
</check>
|
61 |
<send translate="title">
|
79 |
<config>
|
80 |
<children>
|
81 |
<mediaburst_sms translate="title">
|
82 |
+
<title>Clockwork SMS</title>
|
83 |
</mediaburst_sms>
|
84 |
</children>
|
85 |
</config>
|
app/code/community/Mediaburst/Sms/etc/config.xml
CHANGED
@@ -92,10 +92,8 @@
|
|
92 |
<mediaburst_sms>
|
93 |
<general>
|
94 |
<active>1</active>
|
95 |
-
<username>james@mediaburst.co.uk</username>
|
96 |
-
<password>CastingLines11:11</password>
|
97 |
<send_url>https://api.clockworksms.com/xml/send.aspx</send_url>
|
98 |
-
<check_url>https://api.clockworksms.com/http/
|
99 |
<buy_url>https://smsapi.mediaburst.co.uk/Login.aspx?ReturnUrl=https://smsapi.mediaburst.co.uk/shop/</buy_url>
|
100 |
<schedule>* * * * *</schedule>
|
101 |
<debug>1</debug>
|
@@ -136,4 +134,4 @@
|
|
136 |
</Mediaburst_Sms_Send>
|
137 |
</jobs>
|
138 |
</crontab>
|
139 |
-
</config>
|
92 |
<mediaburst_sms>
|
93 |
<general>
|
94 |
<active>1</active>
|
|
|
|
|
95 |
<send_url>https://api.clockworksms.com/xml/send.aspx</send_url>
|
96 |
+
<check_url>https://api.clockworksms.com/http/balance.aspx</check_url>
|
97 |
<buy_url>https://smsapi.mediaburst.co.uk/Login.aspx?ReturnUrl=https://smsapi.mediaburst.co.uk/shop/</buy_url>
|
98 |
<schedule>* * * * *</schedule>
|
99 |
<debug>1</debug>
|
134 |
</Mediaburst_Sms_Send>
|
135 |
</jobs>
|
136 |
</crontab>
|
137 |
+
</config>
|
app/design/adminhtml/default/default/layout/mediaburst/sms.xml
DELETED
@@ -1,78 +0,0 @@
|
|
1 |
-
<?xml version="1.0"?>
|
2 |
-
<layout>
|
3 |
-
<adminhtml_mediaburst_sms_pending>
|
4 |
-
<reference name="content">
|
5 |
-
<block type="Mediaburst_Sms/GridContainer" name="mediaburst_sms.gridcontainer">
|
6 |
-
<action method="setHeaderText" translate="param">
|
7 |
-
<param>Pending SMS Messages</param>
|
8 |
-
</action>
|
9 |
-
<action method="removeButton">
|
10 |
-
<param>add</param>
|
11 |
-
</action>
|
12 |
-
<block type="Mediaburst_Sms/PendingGrid" name="mediaburst_sms.grid" as="grid">
|
13 |
-
<action method="setCollectionResourceModel">
|
14 |
-
<param>Mediaburst_Sms/Message_Collection</param>
|
15 |
-
</action>
|
16 |
-
<action method="setDefaultDir">
|
17 |
-
<param>DESC</param>
|
18 |
-
</action>
|
19 |
-
</block>
|
20 |
-
</block>
|
21 |
-
</reference>
|
22 |
-
</adminhtml_mediaburst_sms_pending>
|
23 |
-
<adminhtml_mediaburst_sms_sent>
|
24 |
-
<reference name="content">
|
25 |
-
<block type="Mediaburst_Sms/GridContainer" name="mediaburst_sms.gridcontainer">
|
26 |
-
<action method="setHeaderText" translate="param">
|
27 |
-
<param>Sent SMS Messages</param>
|
28 |
-
</action>
|
29 |
-
<action method="removeButton">
|
30 |
-
<param>add</param>
|
31 |
-
</action>
|
32 |
-
<block type="Mediaburst_Sms/SentGrid" name="mediaburst_sms.grid" as="grid">
|
33 |
-
<action method="setCollectionResourceModel">
|
34 |
-
<param>Mediaburst_Sms/Message_Collection</param>
|
35 |
-
</action>
|
36 |
-
<action method="setDefaultDir">
|
37 |
-
<param>DESC</param>
|
38 |
-
</action>
|
39 |
-
</block>
|
40 |
-
</block>
|
41 |
-
</reference>
|
42 |
-
</adminhtml_mediaburst_sms_sent>
|
43 |
-
<adminhtml_mediaburst_sms_failed>
|
44 |
-
<reference name="content">
|
45 |
-
<block type="Mediaburst_Sms/GridContainer" name="mediaburst_sms.gridcontainer">
|
46 |
-
<action method="setHeaderText" translate="param">
|
47 |
-
<param>Failed SMS Messages</param>
|
48 |
-
</action>
|
49 |
-
<action method="removeButton">
|
50 |
-
<param>add</param>
|
51 |
-
</action>
|
52 |
-
<block type="Mediaburst_Sms/FailedGrid" name="mediaburst_sms.grid" as="grid">
|
53 |
-
<action method="setCollectionResourceModel">
|
54 |
-
<param>Mediaburst_Sms/Message_Collection</param>
|
55 |
-
</action>
|
56 |
-
<action method="setDefaultDir">
|
57 |
-
<param>DESC</param>
|
58 |
-
</action>
|
59 |
-
</block>
|
60 |
-
</block>
|
61 |
-
</reference>
|
62 |
-
</adminhtml_mediaburst_sms_failed>
|
63 |
-
<adminhtml_mediaburst_sms_check>
|
64 |
-
<reference name="content">
|
65 |
-
<block type="Mediaburst_Sms/GridContainer" name="mediaburst_sms.gridcontainer">
|
66 |
-
<action method="setHeaderText" translate="param">
|
67 |
-
<param>Remaining Credits</param>
|
68 |
-
</action>
|
69 |
-
<action method="removeButton">
|
70 |
-
<param>add</param>
|
71 |
-
</action>
|
72 |
-
<block type="Mediaburst_Sms/CreditReportGrid" name="mediaburst_sms.grid" as="grid">
|
73 |
-
<action method="registerBuyButton"/>
|
74 |
-
</block>
|
75 |
-
</block>
|
76 |
-
</reference>
|
77 |
-
</adminhtml_mediaburst_sms_check>
|
78 |
-
</layout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/etc/modules/MediaBurst_Sms.xml
DELETED
@@ -1,15 +0,0 @@
|
|
1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
-
<config>
|
3 |
-
<modules>
|
4 |
-
<Mediaburst_Sms>
|
5 |
-
<active>true</active>
|
6 |
-
<codePool>community</codePool>
|
7 |
-
<depends>
|
8 |
-
<Mage_Core/>
|
9 |
-
<Mage_Adminhtml/>
|
10 |
-
<Mage_Sales/>
|
11 |
-
<Mage_Checkout/>
|
12 |
-
</depends>
|
13 |
-
</Mediaburst_Sms>
|
14 |
-
</modules>
|
15 |
-
</config>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package.xml
CHANGED
@@ -1,25 +1,25 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Mediaburst_SMS</name>
|
4 |
-
<version>
|
5 |
<stability>stable</stability>
|
6 |
-
<license
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Send order status and shipping text messages automatically.</summary>
|
10 |
-
<description
|
11 |
-
<ul>
|
12 |
-
<li>Your website can send you a text when somebody places an order.</li>
|
13 |
-
<li>Send you customer a text when you ship their order</li>
|
14 |
-
<li>Notify your customer if shipping is delayed.</li>
|
15 |
-
</ul>
|
16 |
-
<p>To use the plugin you need to sign up for a <a href="
|
17 |
-
<p>The price for a
|
18 |
-
<notes>
|
19 |
<authors><author><name>Mediaburst</name><user>mediaburst</user><email>hello@mediaburst.co.uk</email></author></authors>
|
20 |
-
<date>2012-
|
21 |
-
<time>
|
22 |
-
<contents><target name="magecommunity"><dir name="Mediaburst"><dir name="Sms"><dir name="Block"><file name="AbstractMessageGrid.php" hash="3dda9946cab8411c8d208ff3256fad6f"/><file name="CreditReportGrid.php" hash="
|
23 |
<compatible/>
|
24 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
25 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Mediaburst_SMS</name>
|
4 |
+
<version>2.0.0</version>
|
5 |
<stability>stable</stability>
|
6 |
+
<license>ISC</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Send order status and shipping text messages automatically.</summary>
|
10 |
+
<description> <p>The Clockwork SMS add-on enables Magento to send text messages to you and your customers whenever an order status changes.</p>
|
11 |
+
<ul>
|
12 |
+
<li>Your website can send you a text when somebody places an order.</li>
|
13 |
+
<li>Send you customer a text when you ship their order</li>
|
14 |
+
<li>Notify your customer if shipping is delayed.</li>
|
15 |
+
</ul>
|
16 |
+
<p>To use the plugin you need to sign up for a <a href="https://www.clockworksms.com/?utm_source=plugin&utm_medium=magento&utm_campaign=magento">Clockwork SMS API</a> account. Mediaburst SMS API is a premium service using network connected SMS routes (it doesnt use the free email to SMS routes). This means you can deliver text messages to over 400 networks in over 150 countries around the world with high throughput and super fast delivery.</p>
|
17 |
+
<p>The price for a Clockwork account is 5p per text message irrespective of which country you are sending to.</p></description>
|
18 |
+
<notes>Full compatibility with Clockwork API and cash balances.</notes>
|
19 |
<authors><author><name>Mediaburst</name><user>mediaburst</user><email>hello@mediaburst.co.uk</email></author></authors>
|
20 |
+
<date>2012-09-21</date>
|
21 |
+
<time>09:39:58</time>
|
22 |
+
<contents><target name="magecommunity"><dir name="Mediaburst"><dir name="Sms"><dir name="Block"><file name="AbstractMessageGrid.php" hash="3dda9946cab8411c8d208ff3256fad6f"/><file name="CreditReportGrid.php" hash="e1abf1536e28ae0e7bf6d86fd126db36"/><file name="FailedGrid.php" hash="0f8a829ebe78fc126c119ec62f0f113a"/><file name="GridContainer.php" hash="e9db6ad67f86c00f27cf4fada82ab548"/><file name="PendingGrid.php" hash="2b9e917935b90368a1d63177e2cd4144"/><file name="SentGrid.php" hash="6f90c105b11bcfbd994a694f1a6b9ff7"/></dir><file name="Exception.php" hash="a61b41609348442384c156505bbf04bd"/><dir name="Helper"><file name="Data.php" hash="baca1d6b02854389aeace4649bdd4c88"/></dir><file name="LICENSE.md" hash="c933e36963e8dcefd8496aec2d7192fa"/><dir name="Model"><file name="Api.php" hash="748f7039464f4482a011124fabfc772b"/><file name="ApiConfig.php" hash="ae879ffad94b23440e680bddd6a32c90"/><file name="Message.php" hash="7cba80e49c7540dfbdcf23db29c52f59"/><dir name="Mysql4"><dir name="Message"><file name="Collection.php" hash="58de36b5fde44f9a8497f2f791c45108"/></dir><file name="Message.php" hash="0798cc84eca49393941451e30ab018f8"/></dir><file name="Observer.php" hash="68112d467e40dcc93ea1e383bd282f9b"/></dir><file name="README.md" hash="e4709734ee6dcba5b64c05d51f1e9d38"/><dir name="controllers"><dir name="Mediaburst"><file name="SmsController.php" hash="c40d0f548ddcae0cbe7c9c5a93f4f970"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ad1054363f27a2e01a975db30a93de60"/><file name="config.xml" hash="12894eca2e503620e045c1f04d307b32"/><file name="system.xml" hash="270cf0510fe6c0631a82b0d6d542190f"/></dir><dir name="sql"><dir name="Mediaburst_Sms"><file name="mysql4-install-1.0.0.php" hash="4d2862d3ab72dd8db342f126f27502b3"/><file name="mysql4-upgrade-1.0.0-1.1.2.php" hash="f82c128da5ea76c7f7a058d54cdb29b5"/></dir></dir><dir name=".git"><file name="COMMIT_EDITMSG" hash="fa06e9e3eefd7865e318eb9505f1de55"/><file name="HEAD" hash="4cf2d64e44205fe628ddd534e1151b58"/><file name="MERGE_RR" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="config" hash="ff81e28ed30db64c915a7267a1aa8dbe"/><file name="description" hash="a0a7c3fff21f2aea3cfa1d0316dd816c"/><dir name="hooks"><file name="applypatch-msg.sample" hash="9cc72dc973e24f9623bd3fe708f60ef5"/><file name="commit-msg.sample" hash="579a3c1e12a1e74a98169175fb913012"/><file name="post-update.sample" hash="2b7ea5cee3c49ff53d41e00785eb974c"/><file name="pre-applypatch.sample" hash="a4a7e457b55b5ac2877f7973dbba37e9"/><file name="pre-commit.sample" hash="15449d98cfa79704332d057b3f91093c"/><file name="pre-rebase.sample" hash="81005745454846bb79cc3c7c0c57658d"/><file name="prepare-commit-msg.sample" hash="7dfe15854212a30f346da5255c1d794b"/><file name="update.sample" hash="98d7f8e291edbab8df79e433dc97ecc8"/></dir><file name="index" hash="5f351d564e79e29887aad6611df64c71"/><dir name="info"><file name="exclude" hash="036208b4a1ab4a235d75c181e685e5a3"/></dir><dir name="logs"><file name="HEAD" hash="494220c0f7feef36863f0f99294b689e"/><dir name="refs"><dir name="heads"><file name="master" hash="494220c0f7feef36863f0f99294b689e"/></dir><dir name="remotes"><dir name="origin"><file name="master" hash="75c999c49096c6647def456b4612eb64"/></dir></dir></dir></dir><dir name="objects"><dir name="05"><file name="0e574ceefe81b6c9c88afc0489097d7309c781" hash="7bf1af11ce8bf0a5a8739c5eb8367e06"/></dir><dir name="0a"><file name="a853fb18337a2776e31d7559d70df38c434b68" hash="0f3cc493e5a42f57597f76ba4138745d"/></dir><dir name="0d"><file name="1b17782f6a658d4c6fe1324af51e3590d30854" hash="1714eb4619849766c7b9e17ceca698ff"/></dir><dir name="14"><file name="7988b27ce35ce87a1d05f0644e00039b6dfc51" hash="75546bd3194cc97a9df7e5b965ffb5e0"/></dir><dir name="19"><file name="8fd51416a50434e470f94b4905159d5ac99ac9" hash="60e1fc20f66a9e6e585f4b5a265a85a5"/></dir><dir name="1d"><file name="1c3ab571a04e2a89a2b45c95f942a0192e04af" hash="d5c8bc8bd023df38fe87df9d5ec1f293"/></dir><dir name="22"><file name="1c6be96554004a98111c315b83793c9ea6fe29" hash="5d3fa45e8775e74755bf8bc0041dc489"/></dir><dir name="26"><file name="27d208712b0ba1e69c17c75bc7678f66e61593" hash="fffb25f10df2c6bbcaa44c5bfe30b7bc"/></dir><dir name="2f"><file name="021594f8cf662b459f493374b74c1087f92482" hash="3cd47cb164c8aac064f415e162e9706c"/></dir><dir name="34"><file name="eb9da663e333e2ee8da25c6c999619cc62ae28" hash="d9b879df20edec9e629e529b9152ef0f"/></dir><dir name="36"><file name="e02843f0f1b7813bf6ee8a34c0c947ea950bc9" hash="4b2306f17001e35b805865d75cd5a776"/></dir><dir name="3b"><file name="da12882d5c442c97ec1226045e818183e2a02c" hash="6b8f3986bc5c5a85766bfb7e806e7777"/></dir><dir name="40"><file name="b880df7ed138f2cf145e92353f3b6ba389c63c" hash="b0e47b718989a4d3ae9be03d01e06906"/></dir><dir name="42"><file name="e4f9abb82794b7b18755f1711546951579e0b0" hash="e22faf88183d8ba65d0e1069cd6007b1"/></dir><dir name="4c"><file name="758442f5404df604b2e80ff01e5e1c904c1f54" hash="96d7011e05d9f1fa253293feaf54aed7"/></dir><dir name="58"><file name="5b46fa82044263ee03adc873a874d9fcf34a90" hash="cb2be1fe9606848cad5f23da228bc9d0"/></dir><dir name="5e"><file name="554bee6034aac8018de76ac06dcdac9c97d169" hash="3a7c5221bc7ee11409a120ca13940fe9"/></dir><dir name="81"><file name="cace0522edb9808e379f326db9dab0f82f6dbc" hash="5769fac148594c7e65b40176765d5a67"/></dir><dir name="8f"><file name="cd47c60bc69a4b4b79258fb394ccfa4d2c2802" hash="63046b975c046389d1513ad009178b27"/></dir><dir name="95"><file name="fcc09efc8d758f759f4b2e6ecf08a9dc0dec81" hash="7770b64743d8bcfbd9ff51d1b33afebf"/></dir><dir name="9e"><file name="dfddf58d715b268734a514c534dad7b0db0b0e" hash="24357743589b2e00425b6d7bb872c538"/></dir><dir name="9f"><file name="3e093291c7f68c9eb1b85bbe248c0154d5b5fb" hash="48d8bace9c533949e628e4f13bc1c9eb"/></dir><dir name="a1"><file name="c5d2c745d21549285d75017b6d986f8e773954" hash="d291c8cbdf5e0ba90531a95ebec2fd84"/></dir><dir name="a5"><file name="b1aae40203d0b11bf2904abffca58435ebcece" hash="012aadc8dd404b1c21d3be3299e75148"/></dir><dir name="aa"><file name="2978acde59b13cb5180d3485403e6b9db7e1ed" hash="fb0e5d58487882620ff15dfdab2b948f"/></dir><dir name="be"><file name="dab2a3a63f76235074115c69645b3787759f42" hash="766f2404dd7950512a4c88f3cdaa4655"/></dir><dir name="bf"><file name="24ec4bb5db4985ba846ce7e53471269a243133" hash="434e5871b27a90a8f8fe12f3410784fd"/></dir><dir name="c0"><file name="39e9e9e3d17dcf5b0f7571c5c1b7e5c0608e54" hash="a94c779d59b28438639fb27af30959ca"/></dir><dir name="c6"><file name="f9916471a87b597161ef30806a0902f7d1aad5" hash="6ed1d641d27620c00fc36c50d76124fb"/></dir><dir name="cb"><file name="18828d0aef8fe5f63d42f5414b33d90c363d36" hash="ea7cd8874df2da5b9bb7dabaea19fe67"/></dir><dir name="cd"><file name="0d624a4a9ee14061352d29eeb4d2372adc52e1" hash="d5c0db7cc819fa3f2a2dc501628c166e"/></dir><dir name="cf"><file name="03ab1dd568d67063020486253d9d479135b57e" hash="7a85bb7f667dce87a054b147059149dd"/><file name="0e1d2ce4195d3dfd102eb5539a708c712ee3a2" hash="59657d4038809d4cb690dee49695f349"/></dir><dir name="dc"><file name="053fde6b7087be6ca8c3581fa67448e069e4ac" hash="aad532d6fb18d1a58e8f7940a2b54208"/></dir><dir name="e0"><file name="231a13a4f2c201d70980fff3dd7f371ddd6e83" hash="cb99c24118df15ac09e43fad8e460aec"/></dir><dir name="e6"><file name="9de29bb2d1d6434b8b29ae775ad8c2e48c5391" hash="c70c34cbeefd40e7c0149b7a0c2c64c2"/></dir><dir name="e9"><file name="8eb8d9248c1b0cc07f3a4300bd086516673a29" hash="9ed1eed922d5fc624afb065b3006a256"/></dir></dir><dir name="refs"><dir name="heads"><file name="master" hash="398748c7639f58fc32c7d71041a8d99e"/></dir><dir name="remotes"><dir name="origin"><file name="master" hash="398748c7639f58fc32c7d71041a8d99e"/></dir></dir></dir></dir></dir><file name=".DS_Store" hash="973666e0d0442cafa6ef2da910bd3627"/></dir></target></contents>
|
23 |
<compatible/>
|
24 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
25 |
</package>
|