Webpushnotification_Pushassist - Version 1.0.9

Version Notes

Built a stable version 1.0.9

Download this release

Release Info

Developer PushAssist Team
Extension Webpushnotification_Pushassist
Version 1.0.9
Comparing to
See all releases


Code changes from version 1.0.8 to 1.0.9

app/code/community/Webpushnotification/Pushassist/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Webpushnotification_Pushassist>
5
- <version>1.0.8</version>
6
  </Webpushnotification_Pushassist>
7
  </modules>
8
  <global>
2
  <config>
3
  <modules>
4
  <Webpushnotification_Pushassist>
5
+ <version>1.0.9</version>
6
  </Webpushnotification_Pushassist>
7
  </modules>
8
  <global>
app/design/adminhtml/default/default/template/pushassist/dashboard.phtml CHANGED
@@ -11,7 +11,7 @@ $get_subscribers = Mage::helper('pushassist')->get_subscribers();
11
  if($check_api_key!='' && $check_secret_key != '' && (!isset($account_response['error'] )) && $account_response) {
12
 
13
  ?>
14
- <?php if(count($get_subscribers) < 1) { ?>
15
 
16
  <div id="messages"><ul class="messages"><li class="success-msg"><ul><li><span>PushAssist is installed, no additional step is needed. Completely <a href="<?php echo $this->getUrl('*/cache'); ?>" target="_blank">Purge Cache</a> once to see it in action.
17
  Your Account Details have already been emailed to you. Also check under SPAM if you don't find it.</span></li></ul></li></ul></div>
11
  if($check_api_key!='' && $check_secret_key != '' && (!isset($account_response['error'] )) && $account_response) {
12
 
13
  ?>
14
+ <?php if(count($get_subscribers) < 1) { ?>
15
 
16
  <div id="messages"><ul class="messages"><li class="success-msg"><ul><li><span>PushAssist is installed, no additional step is needed. Completely <a href="<?php echo $this->getUrl('*/cache'); ?>" target="_blank">Purge Cache</a> once to see it in action.
17
  Your Account Details have already been emailed to you. Also check under SPAM if you don't find it.</span></li></ul></li></ul></div>
app/design/adminhtml/default/default/template/pushassist/push_dashboard.phtml CHANGED
@@ -2,6 +2,7 @@
2
  $check_api_key=Mage::app()->getStore()->getConfig('pushassistsection/general/apikey');
3
  $check_secret_key=Mage::app()->getStore()->getConfig('pushassistsection/general/secretkey');
4
  $dashboard_response = Mage::helper('pushassist')->get_dashboard();
 
5
  $account_response = Mage::helper('pushassist')->get_account_details();
6
  if(isset($account_response['account_name'])){
7
  $account_url='https://'.$account_response['account_name'].'.pushassist.com/dashboard/';
@@ -21,12 +22,71 @@ if($check_api_key!='' && $check_secret_key != '' && (!isset($account_response['e
21
  </div>
22
  </div>
23
  <!-- End Page Header -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
 
 
 
 
 
 
25
  <!-- Container Start -->
26
  <div class=maindashboard clearfix">
27
  <!-- Top Stats Start -->
 
28
  <div class="col-md-12">
29
  <ul class="topstats clearfix">
 
 
 
 
 
 
 
 
 
 
 
 
30
  <li class="col-xs-6 col-lg-2">
31
  <span class="title"><i class="fa fa-send"></i> <?php echo $this->__('Total Delivered');?> </span>
32
  <h3><?php echo $dashboard_response['total_delivered']; ?></h3>
@@ -54,39 +114,20 @@ if($check_api_key!='' && $check_secret_key != '' && (!isset($account_response['e
54
 
55
  </b> <?php echo $this->__('from last week');?></span>
56
  </li>
57
-
58
- <li class="col-xs-6 col-lg-2">
59
- <span class="title"><i class="fa fa-users"></i> <?php echo $this->__('Total Subscribers');?> </span>
60
- <h3><?php echo $dashboard_response['total_subscribers']; ?></h3>
61
- <span class="diff">
62
- <?php if ($dashboard_response['subscribers_change'] == 'negative') { ?>
63
- <b class="color-down"><i class="fa fa-caret-down"></i> <?php echo $dashboard_response['subscribers_percentage']; ?>
64
- <?php } if ($dashboard_response['subscribers_change'] == 'positive') { ?>
65
- <b class="color-up"><i class="fa fa-caret-up"></i> <?php echo $dashboard_response['subscribers_percentage']; ?>
66
- <?php } ?>%
67
-
68
- </b> <?php echo $this->__('from last week');?></span>
69
- </li>
70
-
71
-
72
-
73
- <li class="col-xs-6 col-lg-2">
74
  <span class="title"><i class="fa fa-cogs"></i> <?php echo $this->__('Campaigns');?> </span>
75
  <h3 class="color-up"><?php echo $dashboard_response['campaign_count']; ?></h3>
76
  <span class="diff"><b class="color-down"></b> <?php echo $this->__('active this week');?></span>
77
  </li>
78
-
79
  <li class="col-xs-6 col-lg-2">
80
  <span class="title"><i class="fa fa-send"></i> <?php echo $this->__('Segments');?> </span>
81
  <h3 class="color-up"><?php echo $dashboard_response['segment_count']; ?></h3>
82
  <span class="diff"><b class="color-down"></b> <?php echo $this->__('created');?> </span>
83
  </li>
84
 
85
- <li class="col-xs-6 col-lg-2">
86
- <span class="title"><i class="fa fa-sitemap"></i> <?php echo $this->__('Sites');?> </span>
87
- <h3 class="color-up"><?php echo $dashboard_response['sites_count']; ?></h3>
88
- <span class="diff"><b class="color-down"></b><?php echo $this->__('registered');?></span>
89
- </li>
90
  </ul>
91
  </div>
92
  <!-- Top Stats End -->
2
  $check_api_key=Mage::app()->getStore()->getConfig('pushassistsection/general/apikey');
3
  $check_secret_key=Mage::app()->getStore()->getConfig('pushassistsection/general/secretkey');
4
  $dashboard_response = Mage::helper('pushassist')->get_dashboard();
5
+ //print_r($dashboard_response);
6
  $account_response = Mage::helper('pushassist')->get_account_details();
7
  if(isset($account_response['account_name'])){
8
  $account_url='https://'.$account_response['account_name'].'.pushassist.com/dashboard/';
22
  </div>
23
  </div>
24
  <!-- End Page Header -->
25
+ <div class=maindashboard clearfix">
26
+ <!-- Top Stats Start -->
27
+ <div class="col-md-12">
28
+ <ul class="topstats clearfix">
29
+ <li class="col-xs-6 col-lg-2">
30
+ <span class="title"><i class="fa fa-users"></i> <?php echo $this->__('Total Subscribers');?> </span>
31
+ <h3><?php echo $dashboard_response['stats_subscribers']; ?></h3>
32
+
33
+ </li>
34
+ <li class="col-xs-6 col-lg-2">
35
+ <span class="title"><i class="fa fa-send"></i> <?php echo $this->__('Total Sent');?> </span>
36
+ <h3 class="color-up"><?php echo $dashboard_response['stats_notification_sent']; ?></h3>
37
+
38
+ </li>
39
+ <li class="col-xs-6 col-lg-2">
40
+ <span class="title"><i class="fa fa-check-square-o"></i> <?php echo $this->__('Total Clicks');?> </span>
41
+ <h3 class="color-up"><?php echo $dashboard_response['stats_clicks']; ?></h3>
42
+
43
+ </li>
44
+ <?php if($account_response['planType']=='Paid'){ ?>
45
+ <li class="col-xs-6 col-lg-2">
46
+ <span class="title"><i class="fa fa-cogs"></i> <?php echo $this->__('Total Campaigns');?> </span>
47
+ <h3><?php echo $dashboard_response['stats_campaigns']; ?></h3>
48
+ </li>
49
+ <?php } ?>
50
+ <li class="col-xs-6 col-lg-2">
51
+ <span class="title"><i class="fa fa-send"></i> <?php echo $this->__('CTR');?> </span>
52
+ <h3 class="color-up">
53
+ <?php $ctr=($dashboard_response['stats_clicks']*100)/$dashboard_response['stats_notification_sent'];
54
+ echo round($ctr,2);?>%</h3>
55
+ </li>
56
+
57
+ <li class="col-xs-6 col-lg-2">
58
+ <span class="title"><i class="fa fa-sitemap"></i> <?php echo $this->__('Sites');?> </span>
59
+ <h3 class="color-up"><?php echo $dashboard_response['sites_count']; ?></h3>
60
+
61
+ </li>
62
+ </ul>
63
+ </div>
64
+ <!-- Top Stats End -->
65
+ <?php
66
 
67
+ ?>
68
+
69
+
70
+
71
+ </div>
72
  <!-- Container Start -->
73
  <div class=maindashboard clearfix">
74
  <!-- Top Stats Start -->
75
+ <h2>This Week</h2>
76
  <div class="col-md-12">
77
  <ul class="topstats clearfix">
78
+ <li class="col-xs-6 col-lg-2">
79
+ <span class="title"><i class="fa fa-users"></i> <?php echo $this->__('Total Subscribers');?> </span>
80
+ <h3><?php echo $dashboard_response['total_subscribers']; ?></h3>
81
+ <span class="diff">
82
+ <?php if ($dashboard_response['subscribers_change'] == 'negative') { ?>
83
+ <b class="color-down"><i class="fa fa-caret-down"></i> <?php echo $dashboard_response['subscribers_percentage']; ?>
84
+ <?php } if ($dashboard_response['subscribers_change'] == 'positive') { ?>
85
+ <b class="color-up"><i class="fa fa-caret-up"></i> <?php echo $dashboard_response['subscribers_percentage']; ?>
86
+ <?php } ?>%
87
+
88
+ </b> <?php echo $this->__('from last week');?></span>
89
+ </li>
90
  <li class="col-xs-6 col-lg-2">
91
  <span class="title"><i class="fa fa-send"></i> <?php echo $this->__('Total Delivered');?> </span>
92
  <h3><?php echo $dashboard_response['total_delivered']; ?></h3>
114
 
115
  </b> <?php echo $this->__('from last week');?></span>
116
  </li>
117
+ <?php if($account_response['planType']=='Paid'){ ?>
118
+ <li class="col-xs-6 col-lg-2">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
  <span class="title"><i class="fa fa-cogs"></i> <?php echo $this->__('Campaigns');?> </span>
120
  <h3 class="color-up"><?php echo $dashboard_response['campaign_count']; ?></h3>
121
  <span class="diff"><b class="color-down"></b> <?php echo $this->__('active this week');?></span>
122
  </li>
123
+ <?php } ?>
124
  <li class="col-xs-6 col-lg-2">
125
  <span class="title"><i class="fa fa-send"></i> <?php echo $this->__('Segments');?> </span>
126
  <h3 class="color-up"><?php echo $dashboard_response['segment_count']; ?></h3>
127
  <span class="diff"><b class="color-down"></b> <?php echo $this->__('created');?> </span>
128
  </li>
129
 
130
+
 
 
 
 
131
  </ul>
132
  </div>
133
  <!-- Top Stats End -->
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Webpushnotification_Pushassist</name>
4
- <version>1.0.8</version>
5
  <stability>stable</stability>
6
  <license uri="https://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>Push Notification Delivery &amp;amp;amp;amp;amp;amp;amp;amp;amp; Analytics for Websites and Mobile. Send Push Notifications to your customers and store visitors.</summary>
10
  <description>Quickly Send push notifications from desktop or mobile websites to your site users. Powerful APIs and tools that allow you to send, receive and track push messages. Set up trigger marketing campaigns, schedule push notification and much more. Quick 5 minutes setup to implement push notifications for ANY website.</description>
11
- <notes>Built a stable version 1.0.8</notes>
12
  <authors><author><name>PushAssist Team</name><user>PushAssist</user><email>support@pushassist.com</email></author></authors>
13
- <date>2016-12-02</date>
14
- <time>13:40:03</time>
15
- <contents><target name="magecommunity"><dir name="Webpushnotification"><dir name="Pushassist"><dir name="Block"><dir name="Adminhtml"><file name="Campaign.php" hash="df4a8dc02241f6b486ec539bc2e71370"/><file name="Createaccount.php" hash="2775e933f8b780e022fa3ff0b88b076e"/><file name="Createcampaign.php" hash="318eb9deab2bfc9a8c4cad81449aaf0f"/><file name="Createsegments.php" hash="94ef9183a9c9a56bfb3dece4c4e97fce"/><file name="Dashboard.php" hash="56e56097a9ec2421218ef8d54e8a5e36"/><file name="Notificationmain.php" hash="c5407e7f33659982ce1e12287e96b541"/><file name="Notificationsend.php" hash="c82ebd53ae7efb4c24cb168e75e8ed44"/><file name="Segments.php" hash="2b4bb8731d1ffc0509210e4b0526e247"/><file name="Settings.php" hash="4f9df0d6b916eaaf9bdaec67284740f0"/><file name="Subscribers.php" hash="7698cd83f156fac6ddea9219716508a5"/></dir><file name="Script.php" hash="e2dab9416d5b5f3c4c0b61d0874f8291"/></dir><dir name="Helper"><file name="Data.php" hash="cb10328b6d7059f5173de2ee373a447e"/></dir><dir name="Model"><file name="Observer.php" hash="e9364016a56eac61d77dd8cb403439c6"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Pushassist"><file name="CampaignController.php" hash="d948db17d7620d0f84fcaa6e455c5b2f"/><file name="CampaignlistController.php" hash="693d94b5c087f2f1339ea192df4c10ab"/><file name="CreateaccountController.php" hash="800903fddaf89755ee99714fb0f7eaa3"/><file name="CreatecampaignController.php" hash="50f14a68cc26ba3fcbc55207f9612aa6"/><file name="CreatesegmentsController.php" hash="b2e45413a9bdb163d35a84896f8a2173"/><file name="DashboardController.php" hash="cbd8c12f1d2ca2072944bb80b1cd2d88"/><file name="NotificationmainController.php" hash="319b0b896ce243f64ccb7aa12f130ef0"/><file name="NotificationsendController.php" hash="b94a751c6ee61ce27b80d6aa06d0d95b"/><file name="SegmentsController.php" hash="8d366c16f7e8817413e0492a919ce61d"/><file name="SettingsController.php" hash="6c6ef26a2fdcfd9f41f8b896d9219c52"/><file name="SubscribersController.php" hash="7c941c29948e69b6aabd90b44e4a63fa"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="200357e7cc170e3ad7a9ba9d2dbd2d6b"/></dir><dir name="sql"><dir name="pushassist_setup"><file name="mysql4-install-1.0.8.php" hash="3f690b91defd911af9a1fb2ec1ed335f"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="pushassist.xml" hash="a8bbbe4afa099e9d01525d00574ebef4"/></dir><dir name="template"><dir name="pushassist"><file name="campaign.phtml" hash="473cd90965e5bb32b0e566a3e5f1151e"/><file name="create_account.phtml" hash="95498831445926a90848067d62663b97"/><file name="createcampaign.phtml" hash="a21a1801a1ece9d2481555e86f453cfd"/><file name="createsegments.phtml" hash="ff0c51cd59c9d89d69211fb578f7e4fc"/><file name="dashboard.phtml" hash="2e4338460b713840b94ba852fa71f2ed"/><file name="notification.phtml" hash="ba00816877630bd2a9d92e0752373b20"/><file name="push_dashboard.phtml" hash="120b39b228a9c08764dd5f9390211266"/><file name="segments.phtml" hash="cdc6ebeb064d774bec1ca24706b2eb59"/><file name="sendnotification.phtml" hash="92b786291beb96588d593141ce3ca173"/><file name="settings.phtml" hash="e7e1e5dc96e49ec4788f9f35d06dacbf"/><file name="subscribers.phtml" hash="edfa485993e06fdafbfc04f2d09ec21b"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Webpushnotification_Pushassist.xml" hash="d32b8e99774c18aa5aab352cfdd06e96"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="pushassist"><file name="bootstrap-datetimepicker.min.css" hash="fa0a2cb4d62d4a578174324afdec0be6"/><file name="bootstrap-select.css" hash="71fcb49a14eaea2be04acb5fc54ebbe1"/><file name="bootstrap.min.css" hash="eedf9ee80c2faa4e1b9ab9017cdfcb88"/><file name="campaign.png" hash="fb1f5604466870a9f35dcd62eb6c562f"/><file name="content_base.css" hash="f5892c76d035d78e2e5aba2038778bf4"/><dir name="images"><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/></dir><dir name="imgUpload"><file name="jquery.fileupload.css" hash="2ee732f8354790746644b312b7b2df1b"/><file name="jquery.fileupload.js" hash="25360c56ade52c72edf654045580c1ce"/><file name="jquery.ui.widget.js" hash="0b44270691b4abf4e38e1a45928a3dc6"/></dir><file name="notification_setting.png" hash="8bf9fbc3ef19ab67e1da8f3849d53a9f"/><file name="pushassist_opt_in_box_setting.png" hash="79feadfc5795b25fc2cb3092272c3e95"/></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="pushassist"><file name="bootstrap-datetimepicker.js" hash="3476fc7070ebef66f2c3a6c1c7f3a408"/><file name="bootstrap-select.js" hash="1b4396af90dda85e5e06782133aaa443"/><file name="bootstrap.min.js" hash="8c237312864d2e4c4f03544cd4f9b195"/><file name="jquery.min.js" hash="8101d596b2b8fa35fe3a634ea342d7c3"/><file name="plugins.js" hash="d671d70560ecac1b27b328f643f76fc2"/></dir></dir><dir name="."><file name="readme.txt" hash="36c5618b878707a215b81ff19ec4fc7c"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="Webpushnotification_Pushassist.csv" hash="4cee55524c735f91e1313afd6e09c0a2"/></dir><dir name="fr_FR"><file name="Webpushnotification_Pushassist.csv" hash="f333463a98bdb3daa77102db1de6a2b8"/></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Webpushnotification_Pushassist</name>
4
+ <version>1.0.9</version>
5
  <stability>stable</stability>
6
  <license uri="https://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>Push Notification Delivery &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp; Analytics for Websites and Mobile. Send Push Notifications to your customers and store visitors.</summary>
10
  <description>Quickly Send push notifications from desktop or mobile websites to your site users. Powerful APIs and tools that allow you to send, receive and track push messages. Set up trigger marketing campaigns, schedule push notification and much more. Quick 5 minutes setup to implement push notifications for ANY website.</description>
11
+ <notes>Built a stable version 1.0.9</notes>
12
  <authors><author><name>PushAssist Team</name><user>PushAssist</user><email>support@pushassist.com</email></author></authors>
13
+ <date>2016-12-10</date>
14
+ <time>07:56:49</time>
15
+ <contents><target name="magecommunity"><dir name="Webpushnotification"><dir name="Pushassist"><dir name="Block"><dir name="Adminhtml"><file name="Campaign.php" hash="df4a8dc02241f6b486ec539bc2e71370"/><file name="Createaccount.php" hash="2775e933f8b780e022fa3ff0b88b076e"/><file name="Createcampaign.php" hash="318eb9deab2bfc9a8c4cad81449aaf0f"/><file name="Createsegments.php" hash="94ef9183a9c9a56bfb3dece4c4e97fce"/><file name="Dashboard.php" hash="56e56097a9ec2421218ef8d54e8a5e36"/><file name="Notificationmain.php" hash="c5407e7f33659982ce1e12287e96b541"/><file name="Notificationsend.php" hash="c82ebd53ae7efb4c24cb168e75e8ed44"/><file name="Segments.php" hash="2b4bb8731d1ffc0509210e4b0526e247"/><file name="Settings.php" hash="4f9df0d6b916eaaf9bdaec67284740f0"/><file name="Subscribers.php" hash="7698cd83f156fac6ddea9219716508a5"/></dir><file name="Script.php" hash="e2dab9416d5b5f3c4c0b61d0874f8291"/></dir><dir name="Helper"><file name="Data.php" hash="cb10328b6d7059f5173de2ee373a447e"/></dir><dir name="Model"><file name="Observer.php" hash="e9364016a56eac61d77dd8cb403439c6"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Pushassist"><file name="CampaignController.php" hash="d948db17d7620d0f84fcaa6e455c5b2f"/><file name="CampaignlistController.php" hash="693d94b5c087f2f1339ea192df4c10ab"/><file name="CreateaccountController.php" hash="800903fddaf89755ee99714fb0f7eaa3"/><file name="CreatecampaignController.php" hash="50f14a68cc26ba3fcbc55207f9612aa6"/><file name="CreatesegmentsController.php" hash="b2e45413a9bdb163d35a84896f8a2173"/><file name="DashboardController.php" hash="cbd8c12f1d2ca2072944bb80b1cd2d88"/><file name="NotificationmainController.php" hash="319b0b896ce243f64ccb7aa12f130ef0"/><file name="NotificationsendController.php" hash="b94a751c6ee61ce27b80d6aa06d0d95b"/><file name="SegmentsController.php" hash="8d366c16f7e8817413e0492a919ce61d"/><file name="SettingsController.php" hash="6c6ef26a2fdcfd9f41f8b896d9219c52"/><file name="SubscribersController.php" hash="7c941c29948e69b6aabd90b44e4a63fa"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="49acc181577551ef2d06bda99bc8b5de"/></dir><dir name="sql"><dir name="pushassist_setup"><file name="mysql4-install-1.0.8.php" hash="3f690b91defd911af9a1fb2ec1ed335f"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="pushassist.xml" hash="a8bbbe4afa099e9d01525d00574ebef4"/></dir><dir name="template"><dir name="pushassist"><file name="campaign.phtml" hash="473cd90965e5bb32b0e566a3e5f1151e"/><file name="create_account.phtml" hash="95498831445926a90848067d62663b97"/><file name="createcampaign.phtml" hash="a21a1801a1ece9d2481555e86f453cfd"/><file name="createsegments.phtml" hash="ff0c51cd59c9d89d69211fb578f7e4fc"/><file name="dashboard.phtml" hash="d7b163c95e6b47710bcca84d0b978c9b"/><file name="notification.phtml" hash="ba00816877630bd2a9d92e0752373b20"/><file name="push_dashboard.phtml" hash="def15e037efd14c97890219c8ed06c15"/><file name="segments.phtml" hash="cdc6ebeb064d774bec1ca24706b2eb59"/><file name="sendnotification.phtml" hash="92b786291beb96588d593141ce3ca173"/><file name="settings.phtml" hash="e7e1e5dc96e49ec4788f9f35d06dacbf"/><file name="subscribers.phtml" hash="edfa485993e06fdafbfc04f2d09ec21b"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Webpushnotification_Pushassist.xml" hash="d32b8e99774c18aa5aab352cfdd06e96"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="pushassist"><file name="bootstrap-datetimepicker.min.css" hash="fa0a2cb4d62d4a578174324afdec0be6"/><file name="bootstrap-select.css" hash="71fcb49a14eaea2be04acb5fc54ebbe1"/><file name="bootstrap.min.css" hash="eedf9ee80c2faa4e1b9ab9017cdfcb88"/><file name="campaign.png" hash="fb1f5604466870a9f35dcd62eb6c562f"/><file name="content_base.css" hash="f5892c76d035d78e2e5aba2038778bf4"/><dir name="images"><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/></dir><dir name="imgUpload"><file name="jquery.fileupload.css" hash="2ee732f8354790746644b312b7b2df1b"/><file name="jquery.fileupload.js" hash="25360c56ade52c72edf654045580c1ce"/><file name="jquery.ui.widget.js" hash="0b44270691b4abf4e38e1a45928a3dc6"/></dir><file name="notification_setting.png" hash="8bf9fbc3ef19ab67e1da8f3849d53a9f"/><file name="pushassist_opt_in_box_setting.png" hash="79feadfc5795b25fc2cb3092272c3e95"/></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="pushassist"><file name="bootstrap-datetimepicker.js" hash="3476fc7070ebef66f2c3a6c1c7f3a408"/><file name="bootstrap-select.js" hash="1b4396af90dda85e5e06782133aaa443"/><file name="bootstrap.min.js" hash="8c237312864d2e4c4f03544cd4f9b195"/><file name="jquery.min.js" hash="8101d596b2b8fa35fe3a634ea342d7c3"/><file name="plugins.js" hash="d671d70560ecac1b27b328f643f76fc2"/></dir></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="Webpushnotification_Pushassist.csv" hash="4cee55524c735f91e1313afd6e09c0a2"/></dir><dir name="fr_FR"><file name="Webpushnotification_Pushassist.csv" hash="f333463a98bdb3daa77102db1de6a2b8"/></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
readme.txt DELETED
@@ -1,31 +0,0 @@
1
- To install the Extension please follow the instructions given below:
2
-
3
- 1. Copy app, js & skin directory into the Magento root folder
4
- 2. Clear cache from "var/cache" folder.
5
-
6
- To Uninstall the Extension please follow the instructions given below:
7
-
8
- 1. Delete Below Folders & files from magento root directory
9
-
10
- app/code/community/Webpushnotification
11
- app/etc/modules/Webpushnotification_Pushassist.xml
12
- js/pushassist
13
- skin/adminhtml/default/default/pushassist
14
-
15
- 2. Execute this sql query directly on your database
16
-
17
- /*
18
- Please have a backup of your DB before executing the following commands.
19
- Execute this sql query directly on your database to completely remove all Pushassist references.
20
- If you use table name prefixes please change the table names accordingly
21
- */
22
-
23
- DELETE FROM `core_resource` WHERE code ='magikfees_setup';
24
- DELETE FROM `core_config_data` WHERE path ='pushassistsection/general/apikey'
25
- OR path ='pushassistsection/general/secretkey'
26
- OR path ='pushassistsection/general/subscribers_remain'
27
- OR path ='pushassistsection/general/planType'
28
- OR path ='pushassistsection/general/subscribers_limit'
29
- OR path ='pushassistsection/general/jsPath'
30
- OR path ='pushassistsection/general/pushassist_setting_post_message'
31
- OR path ='pushassistsection/general/pushassist_js_restrict';