Dashly - Version 1.0.0

Version Notes

Dashly is a real-time Magento Dashboard and Admin app for Android Phones & Tablets.

Download this release

Release Info

Developer LXRMarketPlace
Extension Dashly
Version 1.0.0
Comparing to
See all releases


Version 1.0.0

app/code/community/dashly/magento/Helper/Data.php ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <?php
2
+ class dashly_magento_Helper_Data extends Mage_Core_Helper_Abstract
3
+ {
4
+
5
+ }
app/code/community/dashly/magento/controllers/ExampleController.php ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class dashly_magento_ExampleController extends Mage_Adminhtml_Controller_Action
4
+ {
5
+
6
+ public function indexAction()
7
+ {
8
+ // "Fetch" display
9
+ $this->loadLayout();
10
+
11
+ // "Inject" into display
12
+ // THe below example will not actualy show anything since the core/template is empty
13
+ $this->_addContent($this->getLayout()->createBlock('core/template'));
14
+ $block = $this->getLayout()
15
+ ->createBlock('core/text', 'example-block')
16
+ ->setText('<a href="https://play.google.com/store/apps/details?id=com.lxrmarketplace.dashly&hl=en" target="_blank"><h1 style="text-align:center;">Download Dashly from Google Play Store </h1></a>
17
+ <div style="">
18
+
19
+
20
+ <br /><br />
21
+ <p>Dashly is a real-time Magento Dashboard and Admin app for Android Phones &amp; Tablets. It lets you connect to your Magento Store on mobile phones and tablets and get live access to all the vital store information such as Sales, Revenue, Invoice and Shipment information.</p><p>
22
+ You can also connect with any number of magento stores from your app. Best of all there is NO NEED for any coding. Anyone can simply install this app by creating an API user in your magento store. There is a helpful guide with screenshots to show how an API User and role can be created.</p>
23
+
24
+ Key Features &amp; Benefits:
25
+ <ul>
26
+ <li> - Keep track of all the vital sales &amp; product metrics in a simple yet intuitive dashboard in real-time wherever you are.</li>
27
+ <li> - Get detailed information about each aspect of your ecommerce business by tapping the relevant widget. For example, if you want to know your revenue trend, just tap on the revenue widget and you can see the month till date revenue chart.</li>
28
+ <li> - You can take a deeper look at each order to know who placed the order and what were the items purchased within 2 taps.</li>
29
+ <li> - Dashly provides a quick look at the orders that are pending and which need your attention. If you choose to, you can simply generate an invoice or process a shipment, or even hold the order, directly from your mobile.</li>
30
+ <li> - You also receive automatic notifications on your mobile or tablet if a purchase is made or a certain product goes out of stock. The notification feature is especially useful during the holiday season as you would want to ensure that your popular products are in stock.</li>
31
+ <li>You can add multiple magento stores targeting different geographies.</li>
32
+ </ul>
33
+ <br /><br />
34
+ <P style="font-size:16px;">You can access the Android App from the play store location:
35
+ <b><a href="https://play.google.com/store/apps/details?id=com.lxrmarketplace.dashly&amp;hl=en" target="_blank">Dashly from Google Play Store</a></b></P>
36
+ </div>
37
+ ');
38
+
39
+ $this->_addContent($block);
40
+ //echo "Hello developer...";
41
+ //$this->setText('Hello World #3.');
42
+ // "Output" display
43
+ $this->renderLayout();
44
+ }
45
+ }
app/code/community/dashly/magento/etc/config.xml ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+
3
+ <config>
4
+ <modules>
5
+ <dashly_magento>
6
+ <version>0.1.0</version>
7
+ </dashly_magento>
8
+ </modules>
9
+
10
+
11
+ <global>
12
+ <helpers>
13
+ <magento>
14
+ <class>dashly_magento_Helper</class>
15
+ </magento>
16
+ </helpers>
17
+ </global>
18
+
19
+
20
+ <admin>
21
+ <routers>
22
+ <magento>
23
+ <use>admin</use>
24
+ <args>
25
+ <module>dashly_magento</module>
26
+ <frontName>magento</frontName>
27
+ </args>
28
+ </magento>
29
+ </routers>
30
+ </admin>
31
+
32
+
33
+
34
+
35
+ <adminhtml>
36
+ <menu>
37
+ <menu1 translate="title" module="magento">
38
+ <title>Dashly</title>
39
+ <sort_order>60</sort_order>
40
+ <children>
41
+ <menuitem1 module="magento">
42
+ <title>Magento</title>
43
+ <action>magento/example</action>
44
+ </menuitem1>
45
+ </children>
46
+ </menu1>
47
+ </menu>
48
+ <acl>
49
+ <resources>
50
+ <admin>
51
+ <children>
52
+ <menu1 translate="title" module="magento">
53
+ <title>Dashly</title>
54
+ <sort_order>60</sort_order>
55
+ <children>
56
+ <menuitem1>
57
+ <title>Magento</title>
58
+ </menuitem1>
59
+ </children>
60
+ </menu1>
61
+ </children>
62
+ </admin>
63
+ </resources>
64
+ </acl>
65
+ </adminhtml>
66
+
67
+ </config>
app/etc/modules/dashly_magento.xml ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+
3
+ <config>
4
+ <modules>
5
+ <dashly_magento>
6
+ <active>true</active>
7
+ <codePool>community</codePool>
8
+ </dashly_magento>
9
+ </modules>
10
+ </config>
package.xml ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <package>
3
+ <name>Dashly</name>
4
+ <version>1.0.0</version>
5
+ <stability>stable</stability>
6
+ <license>OSL</license>
7
+ <channel>community</channel>
8
+ <extends/>
9
+ <summary>Dashly is a real-time Magento Dashboard and Admin app for Android Phones &amp;amp; Tablets. </summary>
10
+ <description>&lt;b&gt;You can access the Android App from the play store location:&#xD;
11
+ &lt;a href="https://play.google.com/store/apps/details?id=com.lxrmarketplace.dashly&amp;amp;hl=en"&gt;Dashly from Google Play Store&lt;/a&gt;&lt;/b&gt;&#xD;
12
+ &lt;br /&gt;&lt;br /&gt;&#xD;
13
+ &lt;p&gt;Dashly is a real-time Magento Dashboard and Admin app for Android Phones &amp;amp; Tablets. It lets you connect to your Magento Store on mobile phones and tablets and get live access to all the vital store information such as Sales, Revenue, Invoice and Shipment information.&lt;/p&gt;&lt;p&gt;&#xD;
14
+ You can also connect with any number of magento stores from your app. Best of all there is NO NEED for any coding. Anyone can simply install this app by creating an API user in your magento store. There is a helpful guide with screenshots to show how an API User and role can be created.&lt;/p&gt;&#xD;
15
+ &#xD;
16
+ Key Features &amp;amp; Benefits: &#xD;
17
+ &lt;ul&gt;&#xD;
18
+ &lt;li&gt;Keep track of all the vital sales &amp;amp; product metrics in a simple yet intuitive dashboard in real-time wherever you are.&lt;/li&gt;&#xD;
19
+ &lt;li&gt;Get detailed information about each aspect of your ecommerce business by tapping the relevant widget. For example, if you want to know your revenue trend, just tap on the revenue widget and you can see the month till date revenue chart.&lt;/li&gt;&#xD;
20
+ &lt;li&gt;You can take a deeper look at each order to know who placed the order and what were the items purchased within 2 taps.&lt;/li&gt;&#xD;
21
+ &lt;li&gt;Dashly provides a quick look at the orders that are pending and which need your attention. If you choose to, you can simply generate an invoice or process a shipment, or even hold the order, directly from your mobile.&lt;/li&gt;&#xD;
22
+ &lt;li&gt;You also receive automatic notifications on your mobile or tablet if a purchase is made or a certain product goes out of stock. The notification feature is especially useful during the holiday season as you would want to ensure that your popular products are in stock.&lt;/li&gt;&#xD;
23
+ &lt;li&gt;You can add multiple magento stores targeting different geographies.&lt;/li&gt;&#xD;
24
+ &lt;/ul&gt;&#xD;
25
+ &#xD;
26
+ You can access the Android App from the play store location:&lt;b&gt;&#xD;
27
+ &lt;a href="https://play.google.com/store/apps/details?id=com.lxrmarketplace.dashly&amp;amp;hl=en"&gt;Dashly from Google Play Store&lt;/a&gt;&lt;/b&gt;</description>
28
+ <notes>Dashly is a real-time Magento Dashboard and Admin app for Android Phones &amp;amp; Tablets. &#xD;
29
+ </notes>
30
+ <authors><author><name>LXRMarketPlace</name><user>lxrmp</user><email>lxrmarketplace@netelixir.com</email></author></authors>
31
+ <date>2015-07-22</date>
32
+ <time>07:10:54</time>
33
+ <contents><target name="magecommunity"><dir name="dashly"><dir name="magento"><dir name="Helper"><file name="Data.php" hash="f0ad69b14b87d75b55ab3cae0bb3ee2f"/></dir><dir name="controllers"><file name="ExampleController.php" hash="c475e9bae0652178a27ab391ca417fba"/></dir><dir name="etc"><file name="config.xml" hash="b42a1eaa16ddc86d06335bd20fd944c3"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="dashly_magento.xml" hash="6a45370da2ad454b1c51d82c67b76568"/></dir></target></contents>
34
+ <compatible/>
35
+ <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
36
+ </package>