Virtina_Productslider - Version 0.0.2

Version Notes

Virtina creates extension for Magento to display PRODUCT SLIDERS for all types of products in the required categories of Magento website. It is device and browser compatible, can add multiple sliders on one page. Products Slider appearance can be easily managed by admin from backend settings. Options provided in the backend enables the admin to choose appearance and behaviour of slider such as number of products to display (Website, tablet, mobile), product types, max items quantity, slider title, option to hide product title, product image, product price, Add to cart button, Product review, control slider speed, loop, autoplay, show control/navigation and many more. There is a settings section in the admin side to configure the extension.

Download this release

Release Info

Developer Virtina
Extension Virtina_Productslider
Version 0.0.2
Comparing to
See all releases


Code changes from version 0.0.1 to 0.0.2

app/code/community/Virtina/ProductSlider/etc/config.xml CHANGED
@@ -10,7 +10,7 @@
10
  <config>
11
  <modules>
12
  <Virtina_ProductSlider>
13
- <version>0.0.1</version>
14
  </Virtina_ProductSlider>
15
  </modules>
16
  <frontend>
@@ -58,6 +58,26 @@
58
  <class>Virtina_ProductSlider_Helper</class>
59
  </productslider>
60
  </helpers>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  </global>
62
  <default>
63
  <producslider>
10
  <config>
11
  <modules>
12
  <Virtina_ProductSlider>
13
+ <version>0.0.2</version>
14
  </Virtina_ProductSlider>
15
  </modules>
16
  <frontend>
58
  <class>Virtina_ProductSlider_Helper</class>
59
  </productslider>
60
  </helpers>
61
+ <resources>
62
+ <productslider_setup>
63
+ <setup>
64
+ <module>Virtina_ProductSlider</module>
65
+ </setup>
66
+ <connection>
67
+ <use>core_setup</use>
68
+ </connection>
69
+ </productslider_setup>
70
+ <productslider_write>
71
+ <connection>
72
+ <use>core_write</use>
73
+ </connection>
74
+ </productslider_write>
75
+ <productslider_read>
76
+ <connection>
77
+ <use>core_read</use>
78
+ </connection>
79
+ </productslider_read>
80
+ </resources>
81
  </global>
82
  <default>
83
  <producslider>
app/code/community/Virtina/ProductSlider/etc/system.xml CHANGED
@@ -189,17 +189,20 @@
189
  <show_in_website>1</show_in_website>
190
  <show_in_store>1</show_in_store>
191
  </slidestoscroll>
192
- <websiteview translate="label">
193
- <label>Set Number of Products to Display in Website View</label>
194
  <frontend_type>text</frontend_type>
 
 
195
  <sort_order>4</sort_order>
196
  <show_in_default>1</show_in_default>
197
  <show_in_website>1</show_in_website>
198
  <show_in_store>1</show_in_store>
199
  </websiteview>
200
  <tabview translate="label">
201
- <label>Set Number of Products to Display in Tablet View</label>
202
  <comment>Set 3 for ideal view</comment>
 
203
  <frontend_type>text</frontend_type>
204
  <sort_order>5</sort_order>
205
  <show_in_default>1</show_in_default>
@@ -207,8 +210,9 @@
207
  <show_in_store>1</show_in_store>
208
  </tabview>
209
  <mobileview translate="label">
210
- <label>Set Number of Products to Display in Mobile View</label>
211
  <comment>Set 1 for ideal view</comment>
 
212
  <frontend_type>text</frontend_type>
213
  <sort_order>6</sort_order>
214
  <show_in_default>1</show_in_default>
189
  <show_in_website>1</show_in_website>
190
  <show_in_store>1</show_in_store>
191
  </slidestoscroll>
192
+ <websiteview translate="label">
193
+ <label>Set Number of Products to Display on Slider in Desktop View</label>
194
  <frontend_type>text</frontend_type>
195
+ <validate>required-entry validate-digits-range digits-range-1-6</validate>
196
+ <comment>Set count less than 6 for ideal view </comment>
197
  <sort_order>4</sort_order>
198
  <show_in_default>1</show_in_default>
199
  <show_in_website>1</show_in_website>
200
  <show_in_store>1</show_in_store>
201
  </websiteview>
202
  <tabview translate="label">
203
+ <label>Set Number of Products to Display on Slider in Tablet View</label>
204
  <comment>Set 3 for ideal view</comment>
205
+ <validate>required-entry validate-digits-range digits-range-1-3</validate>
206
  <frontend_type>text</frontend_type>
207
  <sort_order>5</sort_order>
208
  <show_in_default>1</show_in_default>
210
  <show_in_store>1</show_in_store>
211
  </tabview>
212
  <mobileview translate="label">
213
+ <label>Set Number of Products to Display on Slider in Mobile View</label>
214
  <comment>Set 1 for ideal view</comment>
215
+ <validate>required-entry validate-digits-range digits-range-1-2</validate>
216
  <frontend_type>text</frontend_type>
217
  <sort_order>6</sort_order>
218
  <show_in_default>1</show_in_default>
app/code/community/Virtina/ProductSlider/sql/productslider_setup/mysql4-upgrade-0.0.1-0.0.2.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Virtina
4
+ * @package Virtina_ProductSlider
5
+ * @copyright Copyright (c) 2015-2016 Virtina. (http://www.virtina.com)
6
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
7
+ */
8
+ $installer = $this;
9
+ $installer->startSetup();
10
+ if(in_array($this->getTable('permission_block'),$installer->getConnection()->listTables())){
11
+ $installer->run("INSERT INTO {$this->getTable('permission_block')} (block_name,is_allowed) VALUES ('productslider/productslider','1');");
12
+ }
13
+
14
+ $installer->endSetup();
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Virtina_Productslider</name>
4
- <version>0.0.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL 3.0</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>Virtina creates extension for Magento to display PRODUCT SLIDERS for all types of products in the required categories of Magento website. It is device and browser compatible, can add multiple sliders on one page. Products Slider appearance can be easily managed by admin from backend settings. Options provided in the backend enables the admin to choose appearance and behaviour of slider such as number of products to display (Website, tablet, mobile), product types, max items quantity, slider title, option to hide product title, product image, product price, Add to cart button, Product review, control slider speed, loop, autoplay, show control/navigation and many more. There is a settings section in the admin side to configure the extension. </description>
11
  <notes>Virtina creates extension for Magento to display PRODUCT SLIDERS for all types of products in the required categories of Magento website. It is device and browser compatible, can add multiple sliders on one page. Products Slider appearance can be easily managed by admin from backend settings. Options provided in the backend enables the admin to choose appearance and behaviour of slider such as number of products to display (Website, tablet, mobile), product types, max items quantity, slider title, option to hide product title, product image, product price, Add to cart button, Product review, control slider speed, loop, autoplay, show control/navigation and many more. There is a settings section in the admin side to configure the extension. </notes>
12
  <authors><author><name>Virtina</name><user>Virtina</user><email>gigijk@virtina.com</email></author></authors>
13
- <date>2016-08-30</date>
14
- <time>12:13:35</time>
15
- <contents><target name="magecommunity"><dir name="Virtina"><dir name="ProductSlider"><dir name="Block"><file name="Productslider.php" hash="ac7ff05346afebf4586355da22f9b78c"/></dir><dir name="Helper"><file name="Data.php" hash="3403746ea87fc06a632e84b2fe97dd32"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><file name="Types.php" hash="58a947b999993e426b8ec0a3ebca5d10"/></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="7dc35113a6e64369bde01365cb188976"/></dir><dir name="etc"><file name="adminhtml.xml" hash="7c623e469cf140975d34f5f289aaa9ad"/><file name="config.xml" hash="758c2453832f59e2cea7d3385c641db1"/><file name="system.xml" hash="3c33792d8ac24ad4485cac69218b1988"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Virtina_ProductSlider.xml" hash="1ce4124b6c3911e587747e56b4c45d06"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="product-slider"><file name="slick.css" hash="06ba852fe0cd400eeaacc16cbc1ab8fd"/><file name="styles.css" hash="ca2f2b160cb4c495d70a81db61bca20a"/></dir></dir><dir name="js"><dir name="product-slider"><dir name="jquery"><file name="jquery-1.10.2.min.js" hash="e829715da8c4b8bb3c96742bb55e2ee8"/><file name="noconflict.js" hash="727b5d96299c5b3bde958c78d9151db5"/></dir><file name="slick.min.js" hash="3d1974f489e66f3e9defde3231c0f9ff"/></dir></dir><dir name="images"><dir name="product-slider"><file name="next.png" hash="99df639129d7f9f695a5497cd27173ec"/><file name="previous.png" hash="390fe1bf7d2a2f50470f49f09b8c3f9d"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="product-slider"><file name="productslider.xml" hash="cb2b645c82b558fe87e019763cab8ab6"/></dir></dir><dir name="template"><dir name="product-slider"><file name="productslider.phtml" hash="23a30ff283e62946a1434039716ffae7"/></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>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Virtina_Productslider</name>
4
+ <version>0.0.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL 3.0</license>
7
  <channel>community</channel>
10
  <description>Virtina creates extension for Magento to display PRODUCT SLIDERS for all types of products in the required categories of Magento website. It is device and browser compatible, can add multiple sliders on one page. Products Slider appearance can be easily managed by admin from backend settings. Options provided in the backend enables the admin to choose appearance and behaviour of slider such as number of products to display (Website, tablet, mobile), product types, max items quantity, slider title, option to hide product title, product image, product price, Add to cart button, Product review, control slider speed, loop, autoplay, show control/navigation and many more. There is a settings section in the admin side to configure the extension. </description>
11
  <notes>Virtina creates extension for Magento to display PRODUCT SLIDERS for all types of products in the required categories of Magento website. It is device and browser compatible, can add multiple sliders on one page. Products Slider appearance can be easily managed by admin from backend settings. Options provided in the backend enables the admin to choose appearance and behaviour of slider such as number of products to display (Website, tablet, mobile), product types, max items quantity, slider title, option to hide product title, product image, product price, Add to cart button, Product review, control slider speed, loop, autoplay, show control/navigation and many more. There is a settings section in the admin side to configure the extension. </notes>
12
  <authors><author><name>Virtina</name><user>Virtina</user><email>gigijk@virtina.com</email></author></authors>
13
+ <date>2016-10-27</date>
14
+ <time>11:18:32</time>
15
+ <contents><target name="magecommunity"><dir name="Virtina"><dir name="ProductSlider"><dir name="Block"><file name="Productslider.php" hash="ac7ff05346afebf4586355da22f9b78c"/></dir><dir name="Helper"><file name="Data.php" hash="3403746ea87fc06a632e84b2fe97dd32"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><file name="Types.php" hash="58a947b999993e426b8ec0a3ebca5d10"/></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="7dc35113a6e64369bde01365cb188976"/></dir><dir name="etc"><file name="adminhtml.xml" hash="7c623e469cf140975d34f5f289aaa9ad"/><file name="config.xml" hash="c470bbf3f03ebfe9c0fb6db925fbcbb1"/><file name="system.xml" hash="0c2930ed5ad45746c20e87952409fb03"/></dir><dir name="sql"><dir name="productslider_setup"><file name="mysql4-upgrade-0.0.1-0.0.2.php" hash="469946a76fbbf1b6e144cf9a8e166eb5"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Virtina_ProductSlider.xml" hash="1ce4124b6c3911e587747e56b4c45d06"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="product-slider"><file name="slick.css" hash="06ba852fe0cd400eeaacc16cbc1ab8fd"/><file name="styles.css" hash="ca2f2b160cb4c495d70a81db61bca20a"/></dir></dir><dir name="js"><dir name="product-slider"><dir name="jquery"><file name="jquery-1.10.2.min.js" hash="e829715da8c4b8bb3c96742bb55e2ee8"/><file name="noconflict.js" hash="727b5d96299c5b3bde958c78d9151db5"/></dir><file name="slick.min.js" hash="3d1974f489e66f3e9defde3231c0f9ff"/></dir></dir><dir name="images"><dir name="product-slider"><file name="next.png" hash="99df639129d7f9f695a5497cd27173ec"/><file name="previous.png" hash="390fe1bf7d2a2f50470f49f09b8c3f9d"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="product-slider"><file name="productslider.xml" hash="cb2b645c82b558fe87e019763cab8ab6"/></dir></dir><dir name="template"><dir name="product-slider"><file name="productslider.phtml" hash="23a30ff283e62946a1434039716ffae7"/></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>