Changeset 2750590
- Timestamp:
- 07/01/2022 04:43:18 AM (4 years ago)
- Location:
- quick-demo-import
- Files:
-
- 24 edited
- 1 copied
-
tags/1.0.1 (copied) (copied from quick-demo-import/trunk)
-
tags/1.0.1/includes/Hooks.php (modified) (1 diff)
-
tags/1.0.1/qdi.php (modified) (2 diffs)
-
tags/1.0.1/readme.txt (modified) (2 diffs)
-
tags/1.0.1/vendor/autoload.php (modified) (1 diff)
-
tags/1.0.1/vendor/composer/InstalledVersions.php (modified) (8 diffs)
-
tags/1.0.1/vendor/composer/autoload_classmap.php (modified) (1 diff)
-
tags/1.0.1/vendor/composer/autoload_files.php (modified) (1 diff)
-
tags/1.0.1/vendor/composer/autoload_namespaces.php (modified) (1 diff)
-
tags/1.0.1/vendor/composer/autoload_psr4.php (modified) (1 diff)
-
tags/1.0.1/vendor/composer/autoload_real.php (modified) (3 diffs)
-
tags/1.0.1/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/1.0.1/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/includes/Hooks.php (modified) (1 diff)
-
trunk/qdi.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/InstalledVersions.php (modified) (8 diffs)
-
trunk/vendor/composer/autoload_classmap.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_files.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_namespaces.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_psr4.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (3 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quick-demo-import/tags/1.0.1/includes/Hooks.php
r2670383 r2750590 439 439 $callback = function( $key, $page, $page_id ) { 440 440 $setting_name = $page['setting_name']; 441 function_exists( 'masteriyo_set_setting' ) && masteriyo_set_setting( "advance.pages.{$setting_name}", $page_id ); 441 $version = masteriyo_get_version(); 442 $tab = version_compare( '1.5.4', $version, '<=' ) ? 'general' : 'advance'; 443 function_exists( 'masteriyo_set_setting' ) && masteriyo_set_setting( "$tab.pages.{$setting_name}", $page_id ); 442 444 }; 443 445 self::set_up_pages( $pages, $callback ); -
quick-demo-import/tags/1.0.1/qdi.php
r2670383 r2750590 3 3 * Plugin Name: Quick Demo Import 4 4 * Description: Import demo content, widgets and theme settings with just one click. 5 * Version: 1.0. 05 * Version: 1.0.1 6 6 * Author: QuickDemoImport 7 7 * Author URI: https://quickdemoimport.com/ … … 20 20 21 21 if ( ! defined( 'QUICK_DEMO_IMPORT_VERSION' ) ) { 22 define( 'QUICK_DEMO_IMPORT_VERSION', '1.0. 0' );22 define( 'QUICK_DEMO_IMPORT_VERSION', '1.0.1' ); 23 23 } 24 24 -
quick-demo-import/tags/1.0.1/readme.txt
r2670383 r2750590 3 3 Tags: theme demos, demo, importer, one click import 4 4 Requires at least: 5.4 5 Tested up to: 5.85 Tested up to: 6.0 6 6 Requires PHP: 7.0 7 Stable tag: 1.0. 07 Stable tag: 1.0.1 8 8 License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 26 26 == Changelog == 27 27 28 = 1.0.1 - 01-07-2022 = 29 - Fix - Masteriyo page duplication. 30 - Update – Header field Tested up to. 31 28 32 = 1.0.0 - 01-02-2022 = 29 33 - Initial release. -
quick-demo-import/tags/1.0.1/vendor/autoload.php
r2670383 r2750590 3 3 // autoload.php @generated by Composer 4 4 5 if (PHP_VERSION_ID < 50600) { 6 echo 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL; 7 exit(1); 8 } 9 5 10 require_once __DIR__ . '/composer/autoload_real.php'; 6 11 7 return ComposerAutoloaderInit c1a424f55b509b133d5c69484bc66f7b::getLoader();12 return ComposerAutoloaderInit79cd8523a79bd0557cdad7d7e90f0804::getLoader(); -
quick-demo-import/tags/1.0.1/vendor/composer/InstalledVersions.php
r2670383 r2750590 22 22 * 23 23 * To require its presence, you can require `composer-runtime-api ^2.0` 24 * 25 * @final 24 26 */ 25 27 class InstalledVersions … … 27 29 /** 28 30 * @var mixed[]|null 29 * @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}|array{}|null31 * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null 30 32 */ 31 33 private static $installed; … … 38 40 /** 39 41 * @var array[] 40 * @psalm-var array<string, array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>42 * @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> 41 43 */ 42 44 private static $installedByVendor = array(); … … 242 244 /** 243 245 * @return array 244 * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}246 * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool} 245 247 */ 246 248 public static function getRootPackage() … … 256 258 * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect. 257 259 * @return array[] 258 * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}260 * @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} 259 261 */ 260 262 public static function getRawData() … … 279 281 * 280 282 * @return array[] 281 * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>283 * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> 282 284 */ 283 285 public static function getAllRawData() … … 302 304 * @return void 303 305 * 304 * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>} $data306 * @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data 305 307 */ 306 308 public static function reload($data) … … 312 314 /** 313 315 * @return array[] 314 * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>316 * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> 315 317 */ 316 318 private static function getInstalled() -
quick-demo-import/tags/1.0.1/vendor/composer/autoload_classmap.php
r2670383 r2750590 3 3 // autoload_classmap.php @generated by Composer 4 4 5 $vendorDir = dirname( dirname(__FILE__));5 $vendorDir = dirname(__DIR__); 6 6 $baseDir = dirname($vendorDir); 7 7 -
quick-demo-import/tags/1.0.1/vendor/composer/autoload_files.php
r2670383 r2750590 3 3 // autoload_files.php @generated by Composer 4 4 5 $vendorDir = dirname( dirname(__FILE__));5 $vendorDir = dirname(__DIR__); 6 6 $baseDir = dirname($vendorDir); 7 7 -
quick-demo-import/tags/1.0.1/vendor/composer/autoload_namespaces.php
r2670383 r2750590 3 3 // autoload_namespaces.php @generated by Composer 4 4 5 $vendorDir = dirname( dirname(__FILE__));5 $vendorDir = dirname(__DIR__); 6 6 $baseDir = dirname($vendorDir); 7 7 -
quick-demo-import/tags/1.0.1/vendor/composer/autoload_psr4.php
r2670383 r2750590 3 3 // autoload_psr4.php @generated by Composer 4 4 5 $vendorDir = dirname( dirname(__FILE__));5 $vendorDir = dirname(__DIR__); 6 6 $baseDir = dirname($vendorDir); 7 7 -
quick-demo-import/tags/1.0.1/vendor/composer/autoload_real.php
r2670383 r2750590 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit c1a424f55b509b133d5c69484bc66f7b5 class ComposerAutoloaderInit79cd8523a79bd0557cdad7d7e90f0804 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit c1a424f55b509b133d5c69484bc66f7b', 'loadClassLoader'), true, true);26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname( \dirname(__FILE__)));27 spl_autoload_unregister(array('ComposerAutoloaderInit c1a424f55b509b133d5c69484bc66f7b', 'loadClassLoader'));25 spl_autoload_register(array('ComposerAutoloaderInit79cd8523a79bd0557cdad7d7e90f0804', 'loadClassLoader'), true, true); 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit79cd8523a79bd0557cdad7d7e90f0804', 'loadClassLoader')); 28 28 29 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); 30 if ($useStaticLoader) { 31 require __DIR__ . '/autoload_static.php'; 32 33 call_user_func(\Composer\Autoload\ComposerStaticInitc1a424f55b509b133d5c69484bc66f7b::getInitializer($loader)); 34 } else { 35 $map = require __DIR__ . '/autoload_namespaces.php'; 36 foreach ($map as $namespace => $path) { 37 $loader->set($namespace, $path); 38 } 39 40 $map = require __DIR__ . '/autoload_psr4.php'; 41 foreach ($map as $namespace => $path) { 42 $loader->setPsr4($namespace, $path); 43 } 44 45 $classMap = require __DIR__ . '/autoload_classmap.php'; 46 if ($classMap) { 47 $loader->addClassMap($classMap); 48 } 49 } 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit79cd8523a79bd0557cdad7d7e90f0804::getInitializer($loader)); 50 31 51 32 $loader->register(true); 52 33 53 if ($useStaticLoader) { 54 $includeFiles = Composer\Autoload\ComposerStaticInitc1a424f55b509b133d5c69484bc66f7b::$files; 55 } else { 56 $includeFiles = require __DIR__ . '/autoload_files.php'; 57 } 34 $includeFiles = \Composer\Autoload\ComposerStaticInit79cd8523a79bd0557cdad7d7e90f0804::$files; 58 35 foreach ($includeFiles as $fileIdentifier => $file) { 59 composerRequire c1a424f55b509b133d5c69484bc66f7b($fileIdentifier, $file);36 composerRequire79cd8523a79bd0557cdad7d7e90f0804($fileIdentifier, $file); 60 37 } 61 38 … … 69 46 * @return void 70 47 */ 71 function composerRequire c1a424f55b509b133d5c69484bc66f7b($fileIdentifier, $file)48 function composerRequire79cd8523a79bd0557cdad7d7e90f0804($fileIdentifier, $file) 72 49 { 73 50 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
quick-demo-import/tags/1.0.1/vendor/composer/autoload_static.php
r2670383 r2750590 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit c1a424f55b509b133d5c69484bc66f7b7 class ComposerStaticInit79cd8523a79bd0557cdad7d7e90f0804 8 8 { 9 9 public static $files = array ( … … 164 164 { 165 165 return \Closure::bind(function () use ($loader) { 166 $loader->prefixLengthsPsr4 = ComposerStaticInit c1a424f55b509b133d5c69484bc66f7b::$prefixLengthsPsr4;167 $loader->prefixDirsPsr4 = ComposerStaticInit c1a424f55b509b133d5c69484bc66f7b::$prefixDirsPsr4;168 $loader->classMap = ComposerStaticInit c1a424f55b509b133d5c69484bc66f7b::$classMap;166 $loader->prefixLengthsPsr4 = ComposerStaticInit79cd8523a79bd0557cdad7d7e90f0804::$prefixLengthsPsr4; 167 $loader->prefixDirsPsr4 = ComposerStaticInit79cd8523a79bd0557cdad7d7e90f0804::$prefixDirsPsr4; 168 $loader->classMap = ComposerStaticInit79cd8523a79bd0557cdad7d7e90f0804::$classMap; 169 169 170 170 }, null, ClassLoader::class); -
quick-demo-import/tags/1.0.1/vendor/composer/installed.php
r2670383 r2750590 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => '1.0.0', 4 'version' => '1.0.0.0', 3 'name' => 'quickdemoimport/quick-demo-import', 4 'pretty_version' => '1.0.1', 5 'version' => '1.0.1.0', 6 'reference' => '41b2d3d40fcea2e0c8dbdbd9918af986bf0f48c0', 5 7 'type' => 'wordpress-plugin', 6 8 'install_path' => __DIR__ . '/../../', 7 9 'aliases' => array(), 8 'reference' => '51ad7daa555a7d3db5d00b98195cfd02d8f8ed18',9 'name' => 'quickdemoimport/quick-demo-import',10 10 'dev' => false, 11 11 ), … … 14 14 'pretty_version' => 'v1.11.0', 15 15 'version' => '1.11.0.0', 16 'reference' => 'ae03311f45dfe194412081526be2e003960df74b', 16 17 'type' => 'composer-plugin', 17 18 'install_path' => __DIR__ . '/./installers', 18 19 'aliases' => array(), 19 'reference' => 'ae03311f45dfe194412081526be2e003960df74b',20 20 'dev_requirement' => false, 21 21 ), 22 22 'quickdemoimport/quick-demo-import' => array( 23 'pretty_version' => '1.0.0', 24 'version' => '1.0.0.0', 23 'pretty_version' => '1.0.1', 24 'version' => '1.0.1.0', 25 'reference' => '41b2d3d40fcea2e0c8dbdbd9918af986bf0f48c0', 25 26 'type' => 'wordpress-plugin', 26 27 'install_path' => __DIR__ . '/../../', 27 28 'aliases' => array(), 28 'reference' => '51ad7daa555a7d3db5d00b98195cfd02d8f8ed18',29 29 'dev_requirement' => false, 30 30 ), -
quick-demo-import/trunk/includes/Hooks.php
r2670383 r2750590 439 439 $callback = function( $key, $page, $page_id ) { 440 440 $setting_name = $page['setting_name']; 441 function_exists( 'masteriyo_set_setting' ) && masteriyo_set_setting( "advance.pages.{$setting_name}", $page_id ); 441 $version = masteriyo_get_version(); 442 $tab = version_compare( '1.5.4', $version, '<=' ) ? 'general' : 'advance'; 443 function_exists( 'masteriyo_set_setting' ) && masteriyo_set_setting( "$tab.pages.{$setting_name}", $page_id ); 442 444 }; 443 445 self::set_up_pages( $pages, $callback ); -
quick-demo-import/trunk/qdi.php
r2670383 r2750590 3 3 * Plugin Name: Quick Demo Import 4 4 * Description: Import demo content, widgets and theme settings with just one click. 5 * Version: 1.0. 05 * Version: 1.0.1 6 6 * Author: QuickDemoImport 7 7 * Author URI: https://quickdemoimport.com/ … … 20 20 21 21 if ( ! defined( 'QUICK_DEMO_IMPORT_VERSION' ) ) { 22 define( 'QUICK_DEMO_IMPORT_VERSION', '1.0. 0' );22 define( 'QUICK_DEMO_IMPORT_VERSION', '1.0.1' ); 23 23 } 24 24 -
quick-demo-import/trunk/readme.txt
r2670383 r2750590 3 3 Tags: theme demos, demo, importer, one click import 4 4 Requires at least: 5.4 5 Tested up to: 5.85 Tested up to: 6.0 6 6 Requires PHP: 7.0 7 Stable tag: 1.0. 07 Stable tag: 1.0.1 8 8 License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 26 26 == Changelog == 27 27 28 = 1.0.1 - 01-07-2022 = 29 - Fix - Masteriyo page duplication. 30 - Update – Header field Tested up to. 31 28 32 = 1.0.0 - 01-02-2022 = 29 33 - Initial release. -
quick-demo-import/trunk/vendor/autoload.php
r2670383 r2750590 3 3 // autoload.php @generated by Composer 4 4 5 if (PHP_VERSION_ID < 50600) { 6 echo 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL; 7 exit(1); 8 } 9 5 10 require_once __DIR__ . '/composer/autoload_real.php'; 6 11 7 return ComposerAutoloaderInit c1a424f55b509b133d5c69484bc66f7b::getLoader();12 return ComposerAutoloaderInit79cd8523a79bd0557cdad7d7e90f0804::getLoader(); -
quick-demo-import/trunk/vendor/composer/InstalledVersions.php
r2670383 r2750590 22 22 * 23 23 * To require its presence, you can require `composer-runtime-api ^2.0` 24 * 25 * @final 24 26 */ 25 27 class InstalledVersions … … 27 29 /** 28 30 * @var mixed[]|null 29 * @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}|array{}|null31 * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null 30 32 */ 31 33 private static $installed; … … 38 40 /** 39 41 * @var array[] 40 * @psalm-var array<string, array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>42 * @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> 41 43 */ 42 44 private static $installedByVendor = array(); … … 242 244 /** 243 245 * @return array 244 * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}246 * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool} 245 247 */ 246 248 public static function getRootPackage() … … 256 258 * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect. 257 259 * @return array[] 258 * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}260 * @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} 259 261 */ 260 262 public static function getRawData() … … 279 281 * 280 282 * @return array[] 281 * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>283 * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> 282 284 */ 283 285 public static function getAllRawData() … … 302 304 * @return void 303 305 * 304 * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>} $data306 * @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data 305 307 */ 306 308 public static function reload($data) … … 312 314 /** 313 315 * @return array[] 314 * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>316 * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}> 315 317 */ 316 318 private static function getInstalled() -
quick-demo-import/trunk/vendor/composer/autoload_classmap.php
r2670383 r2750590 3 3 // autoload_classmap.php @generated by Composer 4 4 5 $vendorDir = dirname( dirname(__FILE__));5 $vendorDir = dirname(__DIR__); 6 6 $baseDir = dirname($vendorDir); 7 7 -
quick-demo-import/trunk/vendor/composer/autoload_files.php
r2670383 r2750590 3 3 // autoload_files.php @generated by Composer 4 4 5 $vendorDir = dirname( dirname(__FILE__));5 $vendorDir = dirname(__DIR__); 6 6 $baseDir = dirname($vendorDir); 7 7 -
quick-demo-import/trunk/vendor/composer/autoload_namespaces.php
r2670383 r2750590 3 3 // autoload_namespaces.php @generated by Composer 4 4 5 $vendorDir = dirname( dirname(__FILE__));5 $vendorDir = dirname(__DIR__); 6 6 $baseDir = dirname($vendorDir); 7 7 -
quick-demo-import/trunk/vendor/composer/autoload_psr4.php
r2670383 r2750590 3 3 // autoload_psr4.php @generated by Composer 4 4 5 $vendorDir = dirname( dirname(__FILE__));5 $vendorDir = dirname(__DIR__); 6 6 $baseDir = dirname($vendorDir); 7 7 -
quick-demo-import/trunk/vendor/composer/autoload_real.php
r2670383 r2750590 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit c1a424f55b509b133d5c69484bc66f7b5 class ComposerAutoloaderInit79cd8523a79bd0557cdad7d7e90f0804 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit c1a424f55b509b133d5c69484bc66f7b', 'loadClassLoader'), true, true);26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname( \dirname(__FILE__)));27 spl_autoload_unregister(array('ComposerAutoloaderInit c1a424f55b509b133d5c69484bc66f7b', 'loadClassLoader'));25 spl_autoload_register(array('ComposerAutoloaderInit79cd8523a79bd0557cdad7d7e90f0804', 'loadClassLoader'), true, true); 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit79cd8523a79bd0557cdad7d7e90f0804', 'loadClassLoader')); 28 28 29 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); 30 if ($useStaticLoader) { 31 require __DIR__ . '/autoload_static.php'; 32 33 call_user_func(\Composer\Autoload\ComposerStaticInitc1a424f55b509b133d5c69484bc66f7b::getInitializer($loader)); 34 } else { 35 $map = require __DIR__ . '/autoload_namespaces.php'; 36 foreach ($map as $namespace => $path) { 37 $loader->set($namespace, $path); 38 } 39 40 $map = require __DIR__ . '/autoload_psr4.php'; 41 foreach ($map as $namespace => $path) { 42 $loader->setPsr4($namespace, $path); 43 } 44 45 $classMap = require __DIR__ . '/autoload_classmap.php'; 46 if ($classMap) { 47 $loader->addClassMap($classMap); 48 } 49 } 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit79cd8523a79bd0557cdad7d7e90f0804::getInitializer($loader)); 50 31 51 32 $loader->register(true); 52 33 53 if ($useStaticLoader) { 54 $includeFiles = Composer\Autoload\ComposerStaticInitc1a424f55b509b133d5c69484bc66f7b::$files; 55 } else { 56 $includeFiles = require __DIR__ . '/autoload_files.php'; 57 } 34 $includeFiles = \Composer\Autoload\ComposerStaticInit79cd8523a79bd0557cdad7d7e90f0804::$files; 58 35 foreach ($includeFiles as $fileIdentifier => $file) { 59 composerRequire c1a424f55b509b133d5c69484bc66f7b($fileIdentifier, $file);36 composerRequire79cd8523a79bd0557cdad7d7e90f0804($fileIdentifier, $file); 60 37 } 61 38 … … 69 46 * @return void 70 47 */ 71 function composerRequire c1a424f55b509b133d5c69484bc66f7b($fileIdentifier, $file)48 function composerRequire79cd8523a79bd0557cdad7d7e90f0804($fileIdentifier, $file) 72 49 { 73 50 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
quick-demo-import/trunk/vendor/composer/autoload_static.php
r2670383 r2750590 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit c1a424f55b509b133d5c69484bc66f7b7 class ComposerStaticInit79cd8523a79bd0557cdad7d7e90f0804 8 8 { 9 9 public static $files = array ( … … 164 164 { 165 165 return \Closure::bind(function () use ($loader) { 166 $loader->prefixLengthsPsr4 = ComposerStaticInit c1a424f55b509b133d5c69484bc66f7b::$prefixLengthsPsr4;167 $loader->prefixDirsPsr4 = ComposerStaticInit c1a424f55b509b133d5c69484bc66f7b::$prefixDirsPsr4;168 $loader->classMap = ComposerStaticInit c1a424f55b509b133d5c69484bc66f7b::$classMap;166 $loader->prefixLengthsPsr4 = ComposerStaticInit79cd8523a79bd0557cdad7d7e90f0804::$prefixLengthsPsr4; 167 $loader->prefixDirsPsr4 = ComposerStaticInit79cd8523a79bd0557cdad7d7e90f0804::$prefixDirsPsr4; 168 $loader->classMap = ComposerStaticInit79cd8523a79bd0557cdad7d7e90f0804::$classMap; 169 169 170 170 }, null, ClassLoader::class); -
quick-demo-import/trunk/vendor/composer/installed.php
r2670383 r2750590 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => '1.0.0', 4 'version' => '1.0.0.0', 3 'name' => 'quickdemoimport/quick-demo-import', 4 'pretty_version' => '1.0.1', 5 'version' => '1.0.1.0', 6 'reference' => '41b2d3d40fcea2e0c8dbdbd9918af986bf0f48c0', 5 7 'type' => 'wordpress-plugin', 6 8 'install_path' => __DIR__ . '/../../', 7 9 'aliases' => array(), 8 'reference' => '51ad7daa555a7d3db5d00b98195cfd02d8f8ed18',9 'name' => 'quickdemoimport/quick-demo-import',10 10 'dev' => false, 11 11 ), … … 14 14 'pretty_version' => 'v1.11.0', 15 15 'version' => '1.11.0.0', 16 'reference' => 'ae03311f45dfe194412081526be2e003960df74b', 16 17 'type' => 'composer-plugin', 17 18 'install_path' => __DIR__ . '/./installers', 18 19 'aliases' => array(), 19 'reference' => 'ae03311f45dfe194412081526be2e003960df74b',20 20 'dev_requirement' => false, 21 21 ), 22 22 'quickdemoimport/quick-demo-import' => array( 23 'pretty_version' => '1.0.0', 24 'version' => '1.0.0.0', 23 'pretty_version' => '1.0.1', 24 'version' => '1.0.1.0', 25 'reference' => '41b2d3d40fcea2e0c8dbdbd9918af986bf0f48c0', 25 26 'type' => 'wordpress-plugin', 26 27 'install_path' => __DIR__ . '/../../', 27 28 'aliases' => array(), 28 'reference' => '51ad7daa555a7d3db5d00b98195cfd02d8f8ed18',29 29 'dev_requirement' => false, 30 30 ),
Note: See TracChangeset
for help on using the changeset viewer.