Version Notes
Integration with Sales and Orders Ads.
Download this release
Release Info
Developer | Bryan Natter |
Extension | Sando_Ads |
Version | 1.0.3 |
Comparing to | |
See all releases |
Version 1.0.3
app/code/community/Sando/Ads/LICENSE.txt
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Copyright (c) 2013-2014, New Dynamx LLC.
|
2 |
+
All rights reserved.
|
3 |
+
|
4 |
+
Redistribution and use in source and binary forms, with or without modification,
|
5 |
+
are permitted provided that the following conditions are met:
|
6 |
+
|
7 |
+
* Redistributions of source code must retain the above copyright notice,
|
8 |
+
this list of conditions and the following disclaimer.
|
9 |
+
|
10 |
+
* Redistributions in binary form must reproduce the above copyright notice,
|
11 |
+
this list of conditions and the following disclaimer in the documentation
|
12 |
+
and/or other materials provided with the distribution.
|
13 |
+
|
14 |
+
* Neither the name of New Dynamx LLC. nor the names of its
|
15 |
+
contributors may be used to endorse or promote products derived from this
|
16 |
+
software without specific prior written permission.
|
17 |
+
|
18 |
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
19 |
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
20 |
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
21 |
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
22 |
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
23 |
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
24 |
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
25 |
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
26 |
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
27 |
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
app/code/community/Sando/Ads/etc/config.xml
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.3"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Sales and Orders Ads
|
5 |
+
*
|
6 |
+
* @link https://github.com/newdynamx/MagentoSando for the canonical source repository
|
7 |
+
* @copyright Copyright (c) 2013-2014 New Dynamx Inc. (http://www.newdynamx.com)
|
8 |
+
* @license http://www.newdynamx.com/license/new-bsd New BSD License
|
9 |
+
*/
|
10 |
+
-->
|
11 |
+
<config>
|
12 |
+
<modules>
|
13 |
+
<Sando_Ads>
|
14 |
+
<version>2.0</version>
|
15 |
+
<depends>
|
16 |
+
<!-- no dependencies -->
|
17 |
+
</depends>
|
18 |
+
</Sando_Ads>
|
19 |
+
</modules>
|
20 |
+
<frontend>
|
21 |
+
<routers>
|
22 |
+
<route_ads>
|
23 |
+
<use>standard</use>
|
24 |
+
<args>
|
25 |
+
<module>Sando_Ads</module>
|
26 |
+
<frontName>ads</frontName>
|
27 |
+
</args>
|
28 |
+
</route_ads>
|
29 |
+
</routers>
|
30 |
+
</frontend>
|
31 |
+
<adminhtml>
|
32 |
+
<acl>
|
33 |
+
<resources>
|
34 |
+
<admin>
|
35 |
+
<children>
|
36 |
+
<system>
|
37 |
+
<children>
|
38 |
+
<config>
|
39 |
+
<children>
|
40 |
+
<ads_section translate="title">
|
41 |
+
<title>Sales & Orders</title>
|
42 |
+
<sort_order>100</sort_order>
|
43 |
+
</ads_section>
|
44 |
+
</children>
|
45 |
+
</config>
|
46 |
+
</children>
|
47 |
+
</system>
|
48 |
+
</children>
|
49 |
+
</admin>
|
50 |
+
</resources>
|
51 |
+
</acl>
|
52 |
+
</adminhtml>
|
53 |
+
</config>
|
app/code/community/Sando/Ads/etc/system.xml
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.3" ?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Sales and Orders Ads
|
5 |
+
*
|
6 |
+
* @link https://github.com/newdynamx/MagentoSando for the canonical source repository
|
7 |
+
* @copyright Copyright (c) 2013-2014 New Dynamx Inc. (http://www.newdynamx.com)
|
8 |
+
* @license http://www.newdynamx.com/license/new-bsd New BSD License
|
9 |
+
*/
|
10 |
+
-->
|
11 |
+
<config>
|
12 |
+
<tabs>
|
13 |
+
<ads_tab translate="label">
|
14 |
+
<label>Sales & Orders</label>
|
15 |
+
<sort_order>100</sort_order>
|
16 |
+
</ads_tab>
|
17 |
+
</tabs>
|
18 |
+
<sections>
|
19 |
+
<ads_section translate="label">
|
20 |
+
<label>Activation</label>
|
21 |
+
<sort_order>200</sort_order>
|
22 |
+
<show_in_default>1</show_in_default>
|
23 |
+
<show_in_website>1</show_in_website>
|
24 |
+
<show_in_store>1</show_in_store>
|
25 |
+
<tab>ads_tab</tab>
|
26 |
+
<groups>
|
27 |
+
<ads_group translate="label">
|
28 |
+
<label>Sales & Orders Ads Extension</label>
|
29 |
+
<sort_order>10</sort_order>
|
30 |
+
<show_in_default>1</show_in_default>
|
31 |
+
<show_in_website>1</show_in_website>
|
32 |
+
<show_in_store>1</show_in_store>
|
33 |
+
<fields>
|
34 |
+
<ads_field translate="label comment">
|
35 |
+
<label>Sales & Orders Key</label>
|
36 |
+
<show_in_default>1</show_in_default>
|
37 |
+
<show_in_website>1</show_in_website>
|
38 |
+
<show_in_store>1</show_in_store>
|
39 |
+
<frontend_input>text</frontend_input>
|
40 |
+
</ads_field>
|
41 |
+
</fields>
|
42 |
+
<comment>
|
43 |
+
<![CDATA[
|
44 |
+
For more information please go to
|
45 |
+
<a href="http://www.salesandordersads.com" target="_blank">
|
46 |
+
Sales & Orders Ads
|
47 |
+
</a>
|
48 |
+
<p>
|
49 |
+
Version 2.0.0
|
50 |
+
</p>
|
51 |
+
]]>
|
52 |
+
</comment>
|
53 |
+
</ads_group>
|
54 |
+
</groups>
|
55 |
+
</ads_section>
|
56 |
+
</sections>
|
57 |
+
</config>
|
app/etc/modules/Sando_Ads.xml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.3" encoding="UTF-8"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Sales and Orders Ads
|
5 |
+
*
|
6 |
+
* @link https://github.com/newdynamx/MagentoSando for the canonical source repository
|
7 |
+
* @copyright Copyright (c) 2013-2014 New Dynamx Inc. (http://www.newdynamx.com)
|
8 |
+
* @license http://www.newdynamx.com/license/new-bsd New BSD License
|
9 |
+
*/
|
10 |
+
-->
|
11 |
+
<config>
|
12 |
+
<modules>
|
13 |
+
<Sando_Ads>
|
14 |
+
<active>true</active>
|
15 |
+
<codePool>community</codePool>
|
16 |
+
</Sando_Ads>
|
17 |
+
</modules>
|
18 |
+
</config>
|
package.xml
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<package>
|
3 |
+
<name>Sando_Ads</name>
|
4 |
+
<version>1.0.3</version>
|
5 |
+
<stability>stable</stability>
|
6 |
+
<license>BSDL</license>
|
7 |
+
<channel>community</channel>
|
8 |
+
<extends/>
|
9 |
+
<summary>Integrate from Magento to Sales and Orders Adds SAAS. Structure Google Product Ads in the most cost-effective manner. Analyze profit and loss for each product.</summary>
|
10 |
+
<description>This extension helps the integration process with Sales and Orders Ads. 
|
11 |
+
Overview of Sales and Orders Ads Below
|
12 |
+
Get access to the tool the pros use to efficiently advertise your products on the world's largest market places.
|
13 |
+
Our platform uses unique algorithms that guides you to structure ads in the most cost-effective manner. You'll gain a comprehensive understanding of profit and loss for each product to make the necessary adjustments to your campaigns to maximize profitability on every sale.</description>
|
14 |
+
<notes>Integration with Sales and Orders Ads.</notes>
|
15 |
+
<authors><author><name>Bryan Natter</name><user>newdynamx</user><email>bnatter@newdynamx.com</email></author><author><name>John Franco</name><user>jfranco</user><email>jfranco@newdynamx.com</email></author></authors>
|
16 |
+
<date>2014-02-07</date>
|
17 |
+
<time>23:33:39</time>
|
18 |
+
<contents><target name="magecommunity"><dir name="Sando"><dir name="Ads"><dir name="etc"><file name="config.xml" hash="35a299dee4d35b6e73fbccb068de4737"/><file name="system.xml" hash="c2feea6f5fbef02d6ecbd008ee29cc7e"/></dir><file name="LICENSE.txt" hash="1ea3209a9485a63c7615aabccffaa1f0"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Sando_Ads.xml" hash="7bad05be5b9df6006b3fb8ed214ed7f8"/></dir></target></contents>
|
19 |
+
<compatible/>
|
20 |
+
<dependencies><required><php><min>5.3.9</min><max>5.5.7</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.6.0</min><max>1.8</max></package></required></dependencies>
|
21 |
+
</package>
|