Version Notes
New Feature Tour extension released.
Download this release
Release Info
Developer | Arvind Bhardwaj |
Extension | Featurise |
Version | 0.1.3 |
Comparing to | |
See all releases |
Code changes from version 0.1.2 to 0.1.3
app/design/frontend/default/default/template/tour/tour_footer.phtml
CHANGED
@@ -1,11 +1,14 @@
|
|
1 |
<?php $enabled = $this->getConfig('ft_enabled'); ?>
|
2 |
<?php $repeat = $this->getConfig('ft_repeat'); ?>
|
3 |
-
<?php $expire = $this->getConfig('ft_expire'); ?>
|
4 |
<?php $text = $this->getConfig('ft_text'); ?>
|
5 |
<?php $text = preg_replace('/<script\b[^>]*>(.*?)<\/script>/is', "", $text); ?>
|
6 |
|
7 |
<?php
|
8 |
$today = date('m/d/Y');
|
|
|
|
|
|
|
9 |
if (strtotime($today) > strtotime($expire)) {
|
10 |
$enabled = false;
|
11 |
}
|
1 |
<?php $enabled = $this->getConfig('ft_enabled'); ?>
|
2 |
<?php $repeat = $this->getConfig('ft_repeat'); ?>
|
3 |
+
<?php $expire = trim($this->getConfig('ft_expire')); ?>
|
4 |
<?php $text = $this->getConfig('ft_text'); ?>
|
5 |
<?php $text = preg_replace('/<script\b[^>]*>(.*?)<\/script>/is', "", $text); ?>
|
6 |
|
7 |
<?php
|
8 |
$today = date('m/d/Y');
|
9 |
+
if (!$expire || $expire == '') {
|
10 |
+
$expire = $today;
|
11 |
+
}
|
12 |
if (strtotime($today) > strtotime($expire)) {
|
13 |
$enabled = false;
|
14 |
}
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Featurise</name>
|
4 |
-
<version>0.1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>Feature Tour extension allows you to highlight new features added on your store through a beautiful feature tour playback.</description>
|
11 |
<notes>New Feature Tour extension released.</notes>
|
12 |
<authors><author><name>Arvind Bhardwaj</name><user>Arvind07</user><email>bhardwajsonheight@gmail.com</email></author></authors>
|
13 |
-
<date>2013-05-
|
14 |
-
<time>
|
15 |
-
<contents><target name="mageetc"><dir name="modules"><file name="Arvtour_Tour.xml" hash="a3981498d7931cdf2944c4740049168c"/></dir></target><target name="magelocal"><dir name="Arvtour"><dir name="Tour"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Date.php" hash="a2fd61fbe4e408d34d93d19c6dc095f5"/></dir></dir><dir name="Tour"><dir name="Edit"><file name="Form.php" hash="e3b8161a9567ba978cfb6e3eed42afb8"/><dir name="Tab"><file name="Form.php" hash="8718d2a5abf1bdcccac8f7392b6d25ec"/></dir><file name="Tabs.php" hash="90212ec91478514ac1c3c57e0e6d5cd1"/></dir><file name="Edit.php" hash="4687a5072d8ae703eb9308430832ffbc"/><file name="Grid.php" hash="68f381517935d5e44a626effa576b93f"/></dir><file name="Tour.php" hash="e7d7d8accbe20488f6a966cfa8676147"/></dir><file name="Tour.php" hash="c1c19aee1fec77a73c329f2171bc4f81"/></dir><dir name="Helper"><file name="Data.php" hash="203bb6707ea1e0f9d1433631e211bddd"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Tour"><file name="Collection.php" hash="bbe5e73205ea79647fd2b4cae06bf178"/></dir><file name="Tour.php" hash="ca956ab814feca46e61c5bb422e18fc9"/></dir><file name="Status.php" hash="6e1e4605a70a81b77f7272006623fd93"/><file name="Tour.php" hash="6f682c493d0cfdd13b4e2de7526cd943"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="TourController - Copy.php" hash="916abb821d4cd3d3cc9c67f655284258"/><file name="TourController.php" hash="e7715047d8d2fef4d70716ea008839c1"/></dir><file name="IndexController.php" hash="5a849e1f8aa2fc60b51fc531c9893023"/></dir><dir name="etc"><file name="adminhtml.xml" hash="b599de90398a55f54b542f96f9d5e1e7"/><file name="config.xml" hash="87b1851a6e21fc0bbf178eee84daff30"/><file name="system.xml" hash="46ada9c55feb0f6b969e2e6fd38f113c"/></dir><dir name="sql"><dir name="tour_setup"><file name="mysql4-install-0.1.0.php" hash="f3292c73401fd24919fb1ad42cc53bee"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="tour.xml" hash="6058757cd1eebd90b4939ae794ee910c"/></dir><dir name="template"><dir name="tour"><file name="tourform.phtml" hash="fa5bd863bcdeef54d1b5d3be382b6048"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="tour.xml" hash="88ee1d6555408005725017f4ffe3b639"/></dir><dir name="template"><dir name="tour"><file name="tour.phtml" hash="361bb3315b00fb490d0eb4ae338fff38"/><file name="tour_footer.phtml" hash="
|
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>Featurise</name>
|
4 |
+
<version>0.1.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
10 |
<description>Feature Tour extension allows you to highlight new features added on your store through a beautiful feature tour playback.</description>
|
11 |
<notes>New Feature Tour extension released.</notes>
|
12 |
<authors><author><name>Arvind Bhardwaj</name><user>Arvind07</user><email>bhardwajsonheight@gmail.com</email></author></authors>
|
13 |
+
<date>2013-05-13</date>
|
14 |
+
<time>09:13:11</time>
|
15 |
+
<contents><target name="mageetc"><dir name="modules"><file name="Arvtour_Tour.xml" hash="a3981498d7931cdf2944c4740049168c"/></dir></target><target name="magelocal"><dir name="Arvtour"><dir name="Tour"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Date.php" hash="a2fd61fbe4e408d34d93d19c6dc095f5"/></dir></dir><dir name="Tour"><dir name="Edit"><file name="Form.php" hash="e3b8161a9567ba978cfb6e3eed42afb8"/><dir name="Tab"><file name="Form.php" hash="8718d2a5abf1bdcccac8f7392b6d25ec"/></dir><file name="Tabs.php" hash="90212ec91478514ac1c3c57e0e6d5cd1"/></dir><file name="Edit.php" hash="4687a5072d8ae703eb9308430832ffbc"/><file name="Grid.php" hash="68f381517935d5e44a626effa576b93f"/></dir><file name="Tour.php" hash="e7d7d8accbe20488f6a966cfa8676147"/></dir><file name="Tour.php" hash="c1c19aee1fec77a73c329f2171bc4f81"/></dir><dir name="Helper"><file name="Data.php" hash="203bb6707ea1e0f9d1433631e211bddd"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Tour"><file name="Collection.php" hash="bbe5e73205ea79647fd2b4cae06bf178"/></dir><file name="Tour.php" hash="ca956ab814feca46e61c5bb422e18fc9"/></dir><file name="Status.php" hash="6e1e4605a70a81b77f7272006623fd93"/><file name="Tour.php" hash="6f682c493d0cfdd13b4e2de7526cd943"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="TourController - Copy.php" hash="916abb821d4cd3d3cc9c67f655284258"/><file name="TourController.php" hash="e7715047d8d2fef4d70716ea008839c1"/></dir><file name="IndexController.php" hash="5a849e1f8aa2fc60b51fc531c9893023"/></dir><dir name="etc"><file name="adminhtml.xml" hash="b599de90398a55f54b542f96f9d5e1e7"/><file name="config.xml" hash="87b1851a6e21fc0bbf178eee84daff30"/><file name="system.xml" hash="46ada9c55feb0f6b969e2e6fd38f113c"/></dir><dir name="sql"><dir name="tour_setup"><file name="mysql4-install-0.1.0.php" hash="f3292c73401fd24919fb1ad42cc53bee"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="tour.xml" hash="6058757cd1eebd90b4939ae794ee910c"/></dir><dir name="template"><dir name="tour"><file name="tourform.phtml" hash="fa5bd863bcdeef54d1b5d3be382b6048"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="tour.xml" hash="88ee1d6555408005725017f4ffe3b639"/></dir><dir name="template"><dir name="tour"><file name="tour.phtml" hash="361bb3315b00fb490d0eb4ae338fff38"/><file name="tour_footer.phtml" hash="7715e7e2c37480d8a0819b9730319a80"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="tour"><dir name="js"><file name="jquery-1.8.3.min.js" hash="e1288116312e4728f98923c79b034b67"/></dir><dir name="trip"><dir name="src"><file name="arrow.png" hash="61baeca51591a878e5e7a80f8b8b6179"/><file name="trip.css" hash="84819735f6078ef9df0da971240f2b27"/><file name="trip.js" hash="69cb4b219c0310af1e66a2dcca31b652"/><file name="trip.min.js" hash="58f746fa29ade6155269cf7adfef6ea4"/></dir></dir></dir></dir></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>
|