Changeset 1970992
- Timestamp:
- 11/08/2018 03:01:15 PM (7 years ago)
- Location:
- ninja-shop/trunk
- Files:
-
- 10 edited
-
init.php (modified) (1 diff)
-
lib/admin/class.admin.php (modified) (1 diff)
-
lib/admin/views/add-ons/all.php (modified) (1 diff)
-
lib/cart/repository/transaction/class.table.php (modified) (1 diff)
-
lib/functions/hooks.php (modified) (1 diff)
-
ninja-shop.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
vendor/autoload.php (modified) (1 diff)
-
vendor/composer/autoload_real.php (modified) (5 diffs)
-
vendor/composer/autoload_static.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ninja-shop/trunk/init.php
r1958777 r1970992 2 2 /* 3 3 * Plugin Name: Ninja Shop 4 * Version: 1.1. 54 * Version: 1.1.6 5 5 * Text Domain: it-l10n-ithemes-exchange 6 6 * Description: Easily sell your digital goods with Ninja Shop, simple ecommerce for WordPress -
ninja-shop/trunk/lib/admin/class.admin.php
r1954164 r1970992 438 438 $add_ons_callback = $addon['options']['settings-callback']; 439 439 } 440 add_submenu_page( 'it-exchange', 'Ninja Shop Add-ons', 'Add-ons', $this->get_admin_menu_capability( 'it-exchange-addons' ), 'it-exchange-addons', $add_ons_callback );440 add_submenu_page( 'it-exchange', 'Ninja Shop Features', 'Features', $this->get_admin_menu_capability( 'it-exchange-addons' ), 'it-exchange-addons', $add_ons_callback ); 441 441 442 442 // Help menu -
ninja-shop/trunk/lib/admin/views/add-ons/all.php
r1951767 r1970992 9 9 <div id="it-exchange-add-ons-wrap" class="wrap"> 10 10 <?php ITUtility::screen_icon( 'it-exchange-add-ons' ); ?> 11 <h2> Add-ons</h2>12 <p class="top-description"><?php _e( ' Add-ons are features that you can add or remove depending on your needs. Selling your stuff should only be as complicated as you need it to be. Visit the Get More tab to see what else Ninja Shop can do.', 'it-l10n-ithemes-exchange' ); ?></p>11 <h2>Features</h2> 12 <p class="top-description"><?php _e( 'Features that you can add or remove depending on your needs. Selling your stuff should only be as complicated as you need it to be. Visit the Get More tab to see what else Ninja Shop can do.', 'it-l10n-ithemes-exchange' ); ?></p> 13 13 14 14 <?php $this->print_add_ons_page_tabs(); ?> -
ninja-shop/trunk/lib/cart/repository/transaction/class.table.php
r1949467 r1970992 121 121 122 122 $keys = parent::get_keys(); 123 $keys[] = 'KEY transaction__type __id (transaction,type,id)';123 $keys[] = 'KEY transaction__type (transaction,type)'; 124 124 125 125 return $keys; -
ninja-shop/trunk/lib/functions/hooks.php
r1951767 r1970992 118 118 $public_css = IT_Exchange::$url . '/lib/assets/styles/ninja-shop.css'; 119 119 $public_css = apply_filters( 'ninja_shop_public_css_path', $public_css ); 120 wp_enqueue_style( 'it-exchange-public-css', $public_css );120 wp_enqueue_style( 'it-exchange-public-css', $public_css, array( 'dashicons' ) ); 121 121 } 122 122 -
ninja-shop/trunk/ninja-shop.php
r1958777 r1970992 9 9 class IT_Exchange { 10 10 11 const VERSION = '1.1. 5';11 const VERSION = '1.1.6'; 12 12 13 13 const MIN_WP = '4.4.0'; -
ninja-shop/trunk/readme.txt
r1958777 r1970992 5 5 Requires PHP: 5.6 6 6 Tested up to: 4.9 7 Stable tag: 1.1. 57 Stable tag: 1.1.6 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 91 91 == Upgrade Notice == 92 92 93 = 1.1. 5=93 = 1.1.6 = 94 94 95 95 *Bugs:* 96 96 97 * Fixed PHP compatibility issues with PHP version 5.6.*.97 * Extended coverage for MySQL versions that didn't support longer index key lengths. 98 98 99 99 == Changelog == 100 101 = 1.1.6 = 102 103 *Bugs:* 104 105 * Extended coverage for MySQL versions that didn't support longer index key lengths. 100 106 101 107 = 1.1.5 = -
ninja-shop/trunk/vendor/autoload.php
r1958777 r1970992 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit 7a41dc555d0cc8039f5c0bea22491e70::getLoader();7 return ComposerAutoloaderInit49ea53056dca0c5b391df9a3da3f31c1::getLoader(); -
ninja-shop/trunk/vendor/composer/autoload_real.php
r1958777 r1970992 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 7a41dc555d0cc8039f5c0bea22491e705 class ComposerAutoloaderInit49ea53056dca0c5b391df9a3da3f31c1 6 6 { 7 7 private static $loader; … … 20 20 } 21 21 22 spl_autoload_register(array('ComposerAutoloaderInit 7a41dc555d0cc8039f5c0bea22491e70', 'loadClassLoader'), true, true);22 spl_autoload_register(array('ComposerAutoloaderInit49ea53056dca0c5b391df9a3da3f31c1', 'loadClassLoader'), true, true); 23 23 self::$loader = $loader = new \Composer\Autoload\ClassLoader(); 24 spl_autoload_unregister(array('ComposerAutoloaderInit 7a41dc555d0cc8039f5c0bea22491e70', 'loadClassLoader'));24 spl_autoload_unregister(array('ComposerAutoloaderInit49ea53056dca0c5b391df9a3da3f31c1', 'loadClassLoader')); 25 25 26 26 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 28 28 require_once __DIR__ . '/autoload_static.php'; 29 29 30 call_user_func(\Composer\Autoload\ComposerStaticInit 7a41dc555d0cc8039f5c0bea22491e70::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInit49ea53056dca0c5b391df9a3da3f31c1::getInitializer($loader)); 31 31 } else { 32 32 $map = require __DIR__ . '/autoload_namespaces.php'; … … 49 49 50 50 if ($useStaticLoader) { 51 $includeFiles = Composer\Autoload\ComposerStaticInit 7a41dc555d0cc8039f5c0bea22491e70::$files;51 $includeFiles = Composer\Autoload\ComposerStaticInit49ea53056dca0c5b391df9a3da3f31c1::$files; 52 52 } else { 53 53 $includeFiles = require __DIR__ . '/autoload_files.php'; 54 54 } 55 55 foreach ($includeFiles as $fileIdentifier => $file) { 56 composerRequire 7a41dc555d0cc8039f5c0bea22491e70($fileIdentifier, $file);56 composerRequire49ea53056dca0c5b391df9a3da3f31c1($fileIdentifier, $file); 57 57 } 58 58 … … 61 61 } 62 62 63 function composerRequire 7a41dc555d0cc8039f5c0bea22491e70($fileIdentifier, $file)63 function composerRequire49ea53056dca0c5b391df9a3da3f31c1($fileIdentifier, $file) 64 64 { 65 65 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
ninja-shop/trunk/vendor/composer/autoload_static.php
r1958777 r1970992 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 7a41dc555d0cc8039f5c0bea22491e707 class ComposerStaticInit49ea53056dca0c5b391df9a3da3f31c1 8 8 { 9 9 public static $files = array ( … … 125 125 { 126 126 return \Closure::bind(function () use ($loader) { 127 $loader->prefixLengthsPsr4 = ComposerStaticInit 7a41dc555d0cc8039f5c0bea22491e70::$prefixLengthsPsr4;128 $loader->prefixDirsPsr4 = ComposerStaticInit 7a41dc555d0cc8039f5c0bea22491e70::$prefixDirsPsr4;129 $loader->prefixesPsr0 = ComposerStaticInit 7a41dc555d0cc8039f5c0bea22491e70::$prefixesPsr0;127 $loader->prefixLengthsPsr4 = ComposerStaticInit49ea53056dca0c5b391df9a3da3f31c1::$prefixLengthsPsr4; 128 $loader->prefixDirsPsr4 = ComposerStaticInit49ea53056dca0c5b391df9a3da3f31c1::$prefixDirsPsr4; 129 $loader->prefixesPsr0 = ComposerStaticInit49ea53056dca0c5b391df9a3da3f31c1::$prefixesPsr0; 130 130 131 131 }, null, ClassLoader::class);
Note: See TracChangeset
for help on using the changeset viewer.