Changeset 1968239
- Timestamp:
- 11/03/2018 12:37:18 PM (7 years ago)
- Location:
- woorousell/trunk
- Files:
-
- 2 deleted
- 18 edited
-
README.txt (modified) (1 diff)
-
builder/_sample (deleted)
-
builder/builder-helpers.php (modified) (1 diff)
-
builder/builder/controller.php (modified) (2 diffs)
-
builder/builder/model.php (modified) (1 diff)
-
builder/builder/view.php (modified) (1 diff)
-
builder/helpers.php (modified) (1 diff)
-
builder/settings-page/controller.php (modified) (1 diff)
-
builder/settings-page/model.php (modified) (1 diff)
-
builder/settings-page/view.php (modified) (1 diff)
-
builder/settings-page/views/form.php (modified) (1 diff)
-
builder/settings-page/views/form_old.php (deleted)
-
functions.php (modified) (3 diffs)
-
includes/class-woorousell.php (modified) (1 diff)
-
includes/freemius.php (modified) (1 diff)
-
includes/help.php (modified) (1 diff)
-
includes/helpers.php (modified) (1 diff)
-
includes/products/controller.php (modified) (1 diff)
-
includes/products/model.php (modified) (1 diff)
-
includes/products/view.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
woorousell/trunk/README.txt
r1968131 r1968239 5 5 Requires PHP: 5.6 6 6 Tested up to: 4.9.8 7 Stable tag: 0.3.17 Stable tag: 1.0.0 8 8 Tags: woocommerce, ecommerce, product carousel, woocommerce carousel, woocommerce slider, slider, product slider, product carousel, shortcode, autoplay, animations 9 9 License: GPLv2 or later -
woorousell/trunk/builder/builder-helpers.php
r1968128 r1968239 3 3 * Builder Helper Functions 4 4 * 5 * @author Nathan Onn5 * @author MojofyWP 6 6 * @package builder 7 * @version 1.0.08 7 * 9 8 */ -
woorousell/trunk/builder/builder/controller.php
r1968128 r1968239 3 3 * Builder Controller Class 4 4 * 5 * @author Nathan Onn5 * @author MojofyWP 6 6 * @package builder/builder 7 7 * … … 73 73 add_action( 'init', array( &$this->_model, 'register_woorousell' ), 1 ); 74 74 75 // add custom image size76 add_action( 'init' , array(&$this, 'custom_image_size') , 15 );77 78 75 // add woorousell shortcode 79 76 add_shortcode( 'woorousell' , array(&$this, 'woorousell_sc') ); 80 77 } 81 82 /**83 * Custom image size84 *85 * @access public86 */87 public function custom_image_size() {88 89 // // Set Large Image Sizes90 // add_image_size( 'wrsl-square-large', 1000, 1000, true );91 // add_image_size( 'wrsl-portrait-large', 720, 1000, true );92 // add_image_size( 'wrsl-landscape-large', 1000, 720, true );93 94 // // Set Medium Image Sizes95 // add_image_size( 'wrsl-square-medium', 480, 480, true );96 // add_image_size( 'wrsl-portrait-medium', 340, 480, true );97 // add_image_size( 'wrsl-landscape-medium', 480, 340, true );98 99 }100 78 101 79 /** -
woorousell/trunk/builder/builder/model.php
r1968128 r1968239 4 4 * Builder Model Class 5 5 * 6 * @author Nathan Onn6 * @author MojofyWP 7 7 * @package builder/builder 8 8 * -
woorousell/trunk/builder/builder/view.php
r1968128 r1968239 3 3 * Builder View Class 4 4 * 5 * @author Nathan Onn5 * @author MojofyWP 6 6 * @package builder/builder 7 7 * -
woorousell/trunk/builder/helpers.php
r1968128 r1968239 1 1 <?php 2 2 /** 3 * LayersHelper Functions3 * Helper Functions 4 4 * 5 * @author Nathan Onn5 * @author MojofyWP 6 6 * @package builder 7 * @version 1.0.08 7 * 9 8 */ -
woorousell/trunk/builder/settings-page/controller.php
r1968128 r1968239 3 3 * Settings Page Controller Class 4 4 * 5 * @author Nathan Onn5 * @author MojofyWP 6 6 * @package builder/settings-page 7 7 * -
woorousell/trunk/builder/settings-page/model.php
r1968128 r1968239 3 3 * Settings Page Model Class 4 4 * 5 * @author Nathan Onn5 * @author MojofyWP 6 6 * @package builder/settings-page 7 7 * -
woorousell/trunk/builder/settings-page/view.php
r1968128 r1968239 3 3 * Settings Page View Class 4 4 * 5 * @author Nathan Onn5 * @author MojofyWP 6 6 * @package builder/settings-page 7 7 * -
woorousell/trunk/builder/settings-page/views/form.php
r1968128 r1968239 5 5 * Edit form layout 6 6 * 7 * @author Nathan Onn7 * @author MojofyWP 8 8 * @package builder/settings-page/views 9 9 * -
woorousell/trunk/functions.php
r1968131 r1968239 1 1 <?php /* 2 2 Plugin Name: WoorouSell - Product Carousel For WooCommerce 3 Version: 0.3.13 Version: 1.0.0 4 4 Plugin URI: https://www.mojofywp.com/woorousell 5 5 Description: Showcase your woocommerce products in a beautiful and responsive carousel format … … 10 10 Requires at least: 4.9.8 11 11 Tested up to: 4.9.8 12 Stable tag: 0.3.112 Stable tag: 1.0.0 13 13 14 14 Text Domain: woorousell … … 45 45 * Plugin version 46 46 **/ 47 if(!defined('WRSL_VERSION')) define( 'WRSL_VERSION', ' 0.3.0' );47 if(!defined('WRSL_VERSION')) define( 'WRSL_VERSION', '1.0.0' ); 48 48 49 49 /** -
woorousell/trunk/includes/class-woorousell.php
r1968128 r1968239 3 3 * WoorouSell Core Class 4 4 * 5 * @author Nathan Onn5 * @author MojofyWP 6 6 * @package includes 7 * @since 1.0.08 7 * 9 8 */ -
woorousell/trunk/includes/freemius.php
r1968128 r1968239 4 4 * Freemius Init Functions 5 5 * 6 * @author Nathan Onn6 * @author MojofyWP 7 7 * @package includes 8 * @version 1.2.09 8 * 10 9 */ -
woorousell/trunk/includes/help.php
r1968128 r1968239 4 4 * Help Page Functions 5 5 * 6 * @author Nathan Onn6 * @author MojofyWP 7 7 * @package includes 8 * @version 1.2.09 8 * 10 9 */ -
woorousell/trunk/includes/helpers.php
r1968128 r1968239 3 3 * Helper Functions 4 4 * 5 * @author Nathan Onn5 * @author MojofyWP 6 6 * @package includes 7 * @version 1.0.08 7 * 9 8 */ -
woorousell/trunk/includes/products/controller.php
r1968128 r1968239 3 3 * products Controller Class 4 4 * 5 * @author Nathan Onn5 * @author MojofyWP 6 6 * @package includes/products 7 * @since 1.0.08 7 * 9 8 */ -
woorousell/trunk/includes/products/model.php
r1968128 r1968239 4 4 * products Model Class 5 5 * 6 * @author Nathan Onn6 * @author MojofyWP 7 7 * @package includes/products 8 * @since 1.0.09 8 * 10 9 */ -
woorousell/trunk/includes/products/view.php
r1968128 r1968239 4 4 * products View Class 5 5 * 6 * @author Nathan Onn6 * @author MojofyWP 7 7 * @package includes/products 8 * @since 1.0.09 8 * 10 9 */
Note: See TracChangeset
for help on using the changeset viewer.