Version Notes
Enjoy!
Download this release
Release Info
| Developer | Sellry |
| Extension | Sellry_Wombat |
| Version | 1.0.1 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.0 to 1.0.1
app/code/community/Sellry/Wombat/etc/config.xml
CHANGED
|
@@ -29,7 +29,7 @@
|
|
| 29 |
<config>
|
| 30 |
<modules>
|
| 31 |
<Sellry_Wombat>
|
| 32 |
-
<version>1.0.
|
| 33 |
</Sellry_Wombat>
|
| 34 |
</modules>
|
| 35 |
<global>
|
| 29 |
<config>
|
| 30 |
<modules>
|
| 31 |
<Sellry_Wombat>
|
| 32 |
+
<version>1.0.1</version>
|
| 33 |
</Sellry_Wombat>
|
| 34 |
</modules>
|
| 35 |
<global>
|
app/design/adminhtml/default/default/template/sellry/wombat/system/config/fieldset/hint.phtml
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/*
|
| 3 |
+
* Wombat Integration
|
| 4 |
+
*
|
| 5 |
+
* NOTICE OF LICENSE
|
| 6 |
+
*
|
| 7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
| 8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
| 9 |
+
* It is also available through the world-wide-web at this URL:
|
| 10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
| 11 |
+
* If you did not receive a copy of the license and are unable to
|
| 12 |
+
* obtain it through the world-wide-web, please send an email
|
| 13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
| 14 |
+
*
|
| 15 |
+
* DISCLAIMER
|
| 16 |
+
*
|
| 17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
| 18 |
+
* versions in the future. If you wish to customize Magento for your
|
| 19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
| 20 |
+
*
|
| 21 |
+
* Wombat
|
| 22 |
+
*
|
| 23 |
+
* @category Sellry
|
| 24 |
+
* @package Sellry_Wombat
|
| 25 |
+
* @copyright Copyright (c) 2014 Sellry (http://sellry.com)
|
| 26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
| 27 |
+
* @author Michael Bower <sales@sellry.com>
|
| 28 |
+
*/
|
| 29 |
+
?>
|
| 30 |
+
<style>
|
| 31 |
+
.sellry-notice {padding:15px 10px 10px 20px; border:1px solid #ccc; background:#f9fcec; margin:0 0 10px;}
|
| 32 |
+
.sellry-notice .logo {width:155px; float:left; margin:0 10px 0 0;}
|
| 33 |
+
.sellry-notice .wombat-logo {float:right;width:100px;}
|
| 34 |
+
.sellry-notice .notice {float:left;}
|
| 35 |
+
.sellry-notice .notice h4, .sellry-notice .notice em {color:#6e6e6e; }
|
| 36 |
+
.sellry-notice .notice span, strong {color:#a09991;}
|
| 37 |
+
.sellry-notice .notice span,
|
| 38 |
+
.sellry-notice .notice strong,
|
| 39 |
+
.sellry-notice .notice a {line-height:20px;}
|
| 40 |
+
</style>
|
| 41 |
+
<div class='sellry-notice'>
|
| 42 |
+
<div class="logo">
|
| 43 |
+
<a href="<?php echo $this->getSellryUrl() ?>" target="_new"><img src="<?php echo $this->getLogoImage() ?>" /></a>
|
| 44 |
+
</div>
|
| 45 |
+
<div class="notice">
|
| 46 |
+
<div class="wombat-logo">
|
| 47 |
+
<a href="https://wombat.co/" onclick="trackOutboundLink('https://wombat.co/'); return false" target="_new"><img src="http://sellry.com/magento-extensions/wombat-logo.png" width="100"></a>
|
| 48 |
+
</div>
|
| 49 |
+
<h4>
|
| 50 |
+
<?php echo $this->getMainHeading() ?>
|
| 51 |
+
</h4>
|
| 52 |
+
<?php if($this->getLatestVersion() && $this->getModuleVersion() != $this->getLatestVersion()): ?>
|
| 53 |
+
<span><?php echo $this->__('Version: <strong>%s</strong> (out of date; <a href="%s">Download an updated version.</a>)', $this->getModuleVersion(), $this->getLatestDownloadUrl()) ?></span>
|
| 54 |
+
<?php else: ?>
|
| 55 |
+
<span><?php echo $this->__('Version: <strong>%s</strong>', $this->getModuleVersion()) ?></span>
|
| 56 |
+
<?php endif; ?>
|
| 57 |
+
<?php if(!$this->isConnected()): ?>
|
| 58 |
+
<br/>
|
| 59 |
+
<?php echo $this->__("<strong>You're not connected to Wombat yet.</strong> <a href='%s' target='_new' onclick='trackOutboundLink(\'https://wombat.co/user/sign_up\'); return false'>Get a free trial.</a>", 'https://wombat.co/user/sign_up'); ?>
|
| 60 |
+
<?php endif; ?>
|
| 61 |
+
<h4><a href="<?php echo $this->getDocumentationUrl() ?>" target="_new"><?php echo $this->__('Support Documentation') ?></a> | <a href="<?php echo $this->getHelpUrl() ?>" target="_new"><?php echo $this->__('Need some Magento Help?') ?></a></h4>
|
| 62 |
+
<em><?php echo $this->__('This extension pushes data to Wombat. To pull data into Magento, <a href="%s">setup flows in Wombat</a>.', $this->getFlowsUrl()) ?></em>
|
| 63 |
+
</div>
|
| 64 |
+
<div class="clear"></div>
|
| 65 |
+
</div>
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Sellry_Wombat</name>
|
| 4 |
-
<version>1.0.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -10,9 +10,9 @@
|
|
| 10 |
<description>Gone are the days of generic pre-packaged or slowly-built custom integrations! By connecting Magento to Wombat, you can have all your ecommerce data (orders, inventory, shipments, customers and products) flowing through a single hub, easily connected to your other apps for updating. What's more, Wombat's powerful, easy-to-understand interface lets you setup flows; for sending and retrieving data in a matter of clicks. The possibilities are nearly endless!</description>
|
| 11 |
<notes>Enjoy!</notes>
|
| 12 |
<authors><author><name>Sellry</name><user>sellry</user><email>sales@sellry.com</email></author></authors>
|
| 13 |
-
<date>2014-09-
|
| 14 |
-
<time>
|
| 15 |
-
<contents><target name="magecommunity"><dir name="Sellry"><dir name="Wombat"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="daf807032a2350581e9383df093574b9"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="f7c1a665955db1406006c3f32f160355"/><dir name="Entity"><file name="Customer.php" hash="8d218c05b3c6f280f1a749428fef556f"/><file name="Order.php" hash="204a869f31e8d4f2f03d2566aa23f739"/><file name="Product.php" hash="8563018fcddc0c4245f651b39dd48352"/></dir></dir><dir name="Model"><file name="Connection.php" hash="080080ac8848d3b88831425ba7074cd5"/><dir name="Observer"><file name="Abstract.php" hash="86905ae68e26102370830f26a66c9d9c"/><file name="Customer.php" hash="ecfe964dc236ad94e4395b069f38626d"/><file name="Order.php" hash="06ff26b38fd72a69eb558b9d81ebf4ef"/><file name="Product.php" hash="ab2a1b2e09e8c3232e897dfd6e18b3fb"/></dir><dir name="Observers"><file name="Customer.php" hash="6e3ad69473d2add5feb8d83955d77bc3"/></dir></dir><dir name="etc"><file name="config.xml" hash="
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Sellry_Wombat</name>
|
| 4 |
+
<version>1.0.1</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL</license>
|
| 7 |
<channel>community</channel>
|
| 10 |
<description>Gone are the days of generic pre-packaged or slowly-built custom integrations! By connecting Magento to Wombat, you can have all your ecommerce data (orders, inventory, shipments, customers and products) flowing through a single hub, easily connected to your other apps for updating. What's more, Wombat's powerful, easy-to-understand interface lets you setup flows; for sending and retrieving data in a matter of clicks. The possibilities are nearly endless!</description>
|
| 11 |
<notes>Enjoy!</notes>
|
| 12 |
<authors><author><name>Sellry</name><user>sellry</user><email>sales@sellry.com</email></author></authors>
|
| 13 |
+
<date>2014-09-17</date>
|
| 14 |
+
<time>03:53:53</time>
|
| 15 |
+
<contents><target name="magecommunity"><dir name="Sellry"><dir name="Wombat"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="daf807032a2350581e9383df093574b9"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="f7c1a665955db1406006c3f32f160355"/><dir name="Entity"><file name="Customer.php" hash="8d218c05b3c6f280f1a749428fef556f"/><file name="Order.php" hash="204a869f31e8d4f2f03d2566aa23f739"/><file name="Product.php" hash="8563018fcddc0c4245f651b39dd48352"/></dir></dir><dir name="Model"><file name="Connection.php" hash="080080ac8848d3b88831425ba7074cd5"/><dir name="Observer"><file name="Abstract.php" hash="86905ae68e26102370830f26a66c9d9c"/><file name="Customer.php" hash="ecfe964dc236ad94e4395b069f38626d"/><file name="Order.php" hash="06ff26b38fd72a69eb558b9d81ebf4ef"/><file name="Product.php" hash="ab2a1b2e09e8c3232e897dfd6e18b3fb"/></dir><dir name="Observers"><file name="Customer.php" hash="6e3ad69473d2add5feb8d83955d77bc3"/></dir></dir><dir name="etc"><file name="config.xml" hash="383b8e8496d7436f1ab86a105368d033"/><file name="system.xml" hash="fb48a38bb4a239d6f1dddcf544807cee"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Sellry_Wombat.xml" hash="a849ca14e0afa0fdbd7d1358a4c477ad"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="sellry"><dir name="wombat"><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="5531144623418ed5284fd8a93c7f0b05"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
