Changeset 2011517
- Timestamp:
- 01/13/2019 03:03:16 PM (7 years ago)
- Location:
- fix-content-links/trunk
- Files:
-
- 1 added
- 7 edited
-
composer.json (added)
-
index.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
vendor/composer/autoload_classmap.php (modified) (1 diff)
-
vendor/composer/autoload_psr4.php (modified) (1 diff)
-
vendor/composer/autoload_real.php (modified) (1 diff)
-
vendor/composer/autoload_static.php (modified) (3 diffs)
-
vendor/composer/installed.json (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fix-content-links/trunk/index.php
r2011515 r2011517 4 4 * Plugin URI: http://wordpress.org/plugins/fix-content-links/ 5 5 * Description: Replaces incorrect links to sources located in the uploads, plugins, themes or wp-content folder. 6 * Version: 1.0. 16 * Version: 1.0.2 7 7 * Author: LSVH 8 8 * Author URI: https://lsvh.org/ -
fix-content-links/trunk/readme.txt
r2011515 r2011517 2 2 Tags: content, tool 3 3 Requires at least: 5.0 4 Requires PHP: 7. 04 Requires PHP: 7.1 5 5 Tested up to: 5.0.2 6 6 Stable tag: trunk -
fix-content-links/trunk/vendor/composer/autoload_classmap.php
r2011515 r2011517 7 7 8 8 return array( 9 'LSVH\\BuildPackage\\Commands\\BuildCommand' => $vendorDir . '/lsvh/build-package/src/Commands/BuildCommand.php',10 'LSVH\\BuildPackage\\Plugin' => $vendorDir . '/lsvh/build-package/src/Plugin.php',11 'LSVH\\BuildPackage\\Providers\\CommandProvider' => $vendorDir . '/lsvh/build-package/src/Providers/CommandProvider.php',12 'LSVH\\WordPress\\DynamicConfig\\Init' => $vendorDir . '/lsvh/dynamic-wp-config/src/Init.php',13 'LSVH\\WordPress\\FixContentLinks\\Contracts\\CoreInterface' => $baseDir . '/src/Contracts/CoreInterface.php',14 'LSVH\\WordPress\\FixContentLinks\\Contracts\\CoreSettingsInterface' => $baseDir . '/src/Contracts/CoreSettingsInterface.php',15 'LSVH\\WordPress\\FixContentLinks\\Contracts\\FieldInterface' => $baseDir . '/src/Contracts/FieldInterface.php',16 'LSVH\\WordPress\\FixContentLinks\\Contracts\\FieldManagerInterface' => $baseDir . '/src/Contracts/FieldManagerInterface.php',17 'LSVH\\WordPress\\FixContentLinks\\Controllers\\Activate' => $baseDir . '/src/Controllers/Activate.php',18 'LSVH\\WordPress\\FixContentLinks\\Controllers\\Admin' => $baseDir . '/src/Controllers/Admin.php',19 'LSVH\\WordPress\\FixContentLinks\\Controllers\\Deactivate' => $baseDir . '/src/Controllers/Deactivate.php',20 'LSVH\\WordPress\\FixContentLinks\\Controllers\\NotAdmin' => $baseDir . '/src/Controllers/NotAdmin.php',21 'LSVH\\WordPress\\FixContentLinks\\Extendables\\CoreAbstract' => $baseDir . '/src/Extendables/CoreAbstract.php',22 'LSVH\\WordPress\\FixContentLinks\\Extendables\\FieldAbstract' => $baseDir . '/src/Extendables/FieldAbstract.php',23 'LSVH\\WordPress\\FixContentLinks\\Extendables\\FieldManagerAbstract' => $baseDir . '/src/Extendables/FieldManagerAbstract.php',24 'LSVH\\WordPress\\FixContentLinks\\Models\\FieldManager' => $baseDir . '/src/Models/FieldManager.php',25 'LSVH\\WordPress\\FixContentLinks\\Models\\FieldTypes\\SelectBoxes' => $baseDir . '/src/Models/FieldTypes/SelectBoxes.php',26 'LSVH\\WordPress\\FixContentLinks\\Models\\FieldTypes\\TextArea' => $baseDir . '/src/Models/FieldTypes/TextArea.php',27 'LSVH\\WordPress\\FixContentLinks\\Models\\FieldTypes\\TextField' => $baseDir . '/src/Models/FieldTypes/TextField.php',28 'LSVH\\WordPress\\FixContentLinks\\Setup' => $baseDir . '/src/Setup.php',29 'LSVH\\WordPress\\FixContentLinks\\Traits\\Hooks' => $baseDir . '/src/Traits/Hooks.php',30 'Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/filesystem/Exception/ExceptionInterface.php',31 'Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException' => $vendorDir . '/symfony/filesystem/Exception/FileNotFoundException.php',32 'Symfony\\Component\\Filesystem\\Exception\\IOException' => $vendorDir . '/symfony/filesystem/Exception/IOException.php',33 'Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface' => $vendorDir . '/symfony/filesystem/Exception/IOExceptionInterface.php',34 'Symfony\\Component\\Filesystem\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/filesystem/Exception/InvalidArgumentException.php',35 'Symfony\\Component\\Filesystem\\Filesystem' => $vendorDir . '/symfony/filesystem/Filesystem.php',36 'Symfony\\Polyfill\\Ctype\\Ctype' => $vendorDir . '/symfony/polyfill-ctype/Ctype.php',37 9 ); -
fix-content-links/trunk/vendor/composer/autoload_psr4.php
r2011515 r2011517 7 7 8 8 return array( 9 'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),10 'Symfony\\Component\\Filesystem\\' => array($vendorDir . '/symfony/filesystem'),11 9 'LSVH\\WordPress\\FixContentLinks\\' => array($baseDir . '/src'), 12 10 'LSVH\\WordPress\\DynamicConfig\\' => array($vendorDir . '/lsvh/dynamic-wp-config/src'), 13 'LSVH\\BuildPackage\\' => array($vendorDir . '/lsvh/build-package/src'),14 11 ); -
fix-content-links/trunk/vendor/composer/autoload_real.php
r2011515 r2011517 48 48 $loader->register(true); 49 49 50 if ($useStaticLoader) {51 $includeFiles = Composer\Autoload\ComposerStaticInite7f499ed52793ab4f83d58c663c138f2::$files;52 } else {53 $includeFiles = require __DIR__ . '/autoload_files.php';54 }55 foreach ($includeFiles as $fileIdentifier => $file) {56 composerRequiree7f499ed52793ab4f83d58c663c138f2($fileIdentifier, $file);57 }58 59 50 return $loader; 60 51 } 61 52 } 62 63 function composerRequiree7f499ed52793ab4f83d58c663c138f2($fileIdentifier, $file)64 {65 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {66 require $file;67 68 $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;69 }70 } -
fix-content-links/trunk/vendor/composer/autoload_static.php
r2011515 r2011517 7 7 class ComposerStaticInite7f499ed52793ab4f83d58c663c138f2 8 8 { 9 public static $files = array (10 '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',11 );12 13 9 public static $prefixLengthsPsr4 = array ( 14 'S' =>15 array (16 'Symfony\\Polyfill\\Ctype\\' => 23,17 'Symfony\\Component\\Filesystem\\' => 29,18 ),19 10 'L' => 20 11 array ( 21 12 'LSVH\\WordPress\\FixContentLinks\\' => 31, 22 13 'LSVH\\WordPress\\DynamicConfig\\' => 29, 23 'LSVH\\BuildPackage\\' => 18,24 14 ), 25 15 ); 26 16 27 17 public static $prefixDirsPsr4 = array ( 28 'Symfony\\Polyfill\\Ctype\\' =>29 array (30 0 => __DIR__ . '/..' . '/symfony/polyfill-ctype',31 ),32 'Symfony\\Component\\Filesystem\\' =>33 array (34 0 => __DIR__ . '/..' . '/symfony/filesystem',35 ),36 18 'LSVH\\WordPress\\FixContentLinks\\' => 37 19 array ( … … 42 24 0 => __DIR__ . '/..' . '/lsvh/dynamic-wp-config/src', 43 25 ), 44 'LSVH\\BuildPackage\\' =>45 array (46 0 => __DIR__ . '/..' . '/lsvh/build-package/src',47 ),48 );49 50 public static $classMap = array (51 'LSVH\\BuildPackage\\Commands\\BuildCommand' => __DIR__ . '/..' . '/lsvh/build-package/src/Commands/BuildCommand.php',52 'LSVH\\BuildPackage\\Plugin' => __DIR__ . '/..' . '/lsvh/build-package/src/Plugin.php',53 'LSVH\\BuildPackage\\Providers\\CommandProvider' => __DIR__ . '/..' . '/lsvh/build-package/src/Providers/CommandProvider.php',54 'LSVH\\WordPress\\DynamicConfig\\Init' => __DIR__ . '/..' . '/lsvh/dynamic-wp-config/src/Init.php',55 'LSVH\\WordPress\\FixContentLinks\\Contracts\\CoreInterface' => __DIR__ . '/../..' . '/src/Contracts/CoreInterface.php',56 'LSVH\\WordPress\\FixContentLinks\\Contracts\\CoreSettingsInterface' => __DIR__ . '/../..' . '/src/Contracts/CoreSettingsInterface.php',57 'LSVH\\WordPress\\FixContentLinks\\Contracts\\FieldInterface' => __DIR__ . '/../..' . '/src/Contracts/FieldInterface.php',58 'LSVH\\WordPress\\FixContentLinks\\Contracts\\FieldManagerInterface' => __DIR__ . '/../..' . '/src/Contracts/FieldManagerInterface.php',59 'LSVH\\WordPress\\FixContentLinks\\Controllers\\Activate' => __DIR__ . '/../..' . '/src/Controllers/Activate.php',60 'LSVH\\WordPress\\FixContentLinks\\Controllers\\Admin' => __DIR__ . '/../..' . '/src/Controllers/Admin.php',61 'LSVH\\WordPress\\FixContentLinks\\Controllers\\Deactivate' => __DIR__ . '/../..' . '/src/Controllers/Deactivate.php',62 'LSVH\\WordPress\\FixContentLinks\\Controllers\\NotAdmin' => __DIR__ . '/../..' . '/src/Controllers/NotAdmin.php',63 'LSVH\\WordPress\\FixContentLinks\\Extendables\\CoreAbstract' => __DIR__ . '/../..' . '/src/Extendables/CoreAbstract.php',64 'LSVH\\WordPress\\FixContentLinks\\Extendables\\FieldAbstract' => __DIR__ . '/../..' . '/src/Extendables/FieldAbstract.php',65 'LSVH\\WordPress\\FixContentLinks\\Extendables\\FieldManagerAbstract' => __DIR__ . '/../..' . '/src/Extendables/FieldManagerAbstract.php',66 'LSVH\\WordPress\\FixContentLinks\\Models\\FieldManager' => __DIR__ . '/../..' . '/src/Models/FieldManager.php',67 'LSVH\\WordPress\\FixContentLinks\\Models\\FieldTypes\\SelectBoxes' => __DIR__ . '/../..' . '/src/Models/FieldTypes/SelectBoxes.php',68 'LSVH\\WordPress\\FixContentLinks\\Models\\FieldTypes\\TextArea' => __DIR__ . '/../..' . '/src/Models/FieldTypes/TextArea.php',69 'LSVH\\WordPress\\FixContentLinks\\Models\\FieldTypes\\TextField' => __DIR__ . '/../..' . '/src/Models/FieldTypes/TextField.php',70 'LSVH\\WordPress\\FixContentLinks\\Setup' => __DIR__ . '/../..' . '/src/Setup.php',71 'LSVH\\WordPress\\FixContentLinks\\Traits\\Hooks' => __DIR__ . '/../..' . '/src/Traits/Hooks.php',72 'Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/filesystem/Exception/ExceptionInterface.php',73 'Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/FileNotFoundException.php',74 'Symfony\\Component\\Filesystem\\Exception\\IOException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/IOException.php',75 'Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface' => __DIR__ . '/..' . '/symfony/filesystem/Exception/IOExceptionInterface.php',76 'Symfony\\Component\\Filesystem\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/InvalidArgumentException.php',77 'Symfony\\Component\\Filesystem\\Filesystem' => __DIR__ . '/..' . '/symfony/filesystem/Filesystem.php',78 'Symfony\\Polyfill\\Ctype\\Ctype' => __DIR__ . '/..' . '/symfony/polyfill-ctype/Ctype.php',79 26 ); 80 27 … … 84 31 $loader->prefixLengthsPsr4 = ComposerStaticInite7f499ed52793ab4f83d58c663c138f2::$prefixLengthsPsr4; 85 32 $loader->prefixDirsPsr4 = ComposerStaticInite7f499ed52793ab4f83d58c663c138f2::$prefixDirsPsr4; 86 $loader->classMap = ComposerStaticInite7f499ed52793ab4f83d58c663c138f2::$classMap;87 33 88 34 }, null, ClassLoader::class); -
fix-content-links/trunk/vendor/composer/installed.json
r2011515 r2011517 1 1 [ 2 {3 "name": "lsvh/build-package",4 "version": "dev-master",5 "version_normalized": "9999999-dev",6 "dist": {7 "type": "path",8 "url": "/home/owner/Documents/LSVH/Composer/build-package",9 "reference": "fb0c2fc8af7d3a169648a7a30f6336ae27fe2c3f",10 "shasum": null11 },12 "require": {13 "composer-plugin-api": "^1.1",14 "php": ">=7.1",15 "symfony/filesystem": "^4.2"16 },17 "require-dev": {18 "composer/composer": "^1.8",19 "phpunit/phpunit": "^7.5"20 },21 "type": "composer-plugin",22 "extra": {23 "class": "LSVH\\BuildPackage\\Plugin"24 },25 "installation-source": "dist",26 "autoload": {27 "psr-4": {28 "LSVH\\BuildPackage\\": "src/"29 }30 },31 "license": [32 "MIT"33 ],34 "authors": [35 {36 "name": "LSVH",37 "email": "[email protected]"38 }39 ],40 "description": "Generate a production build of your package."41 },42 2 { 43 3 "name": "lsvh/dynamic-wp-config", … … 80 40 ], 81 41 "description": "Dynamically conifugre paths in your WordPress config file." 82 },83 {84 "name": "symfony/filesystem",85 "version": "dev-master",86 "version_normalized": "9999999-dev",87 "source": {88 "type": "git",89 "url": "https://github.com/symfony/filesystem.git",90 "reference": "b12244c29ced470fba69e20da3db97e53a6a918a"91 },92 "dist": {93 "type": "zip",94 "url": "https://api.github.com/repos/symfony/filesystem/zipball/b12244c29ced470fba69e20da3db97e53a6a918a",95 "reference": "b12244c29ced470fba69e20da3db97e53a6a918a",96 "shasum": ""97 },98 "require": {99 "php": "^7.1.3",100 "symfony/polyfill-ctype": "~1.8"101 },102 "time": "2019-01-03T09:16:58+00:00",103 "type": "library",104 "extra": {105 "branch-alias": {106 "dev-master": "4.3-dev"107 }108 },109 "installation-source": "source",110 "autoload": {111 "psr-4": {112 "Symfony\\Component\\Filesystem\\": ""113 },114 "exclude-from-classmap": [115 "/Tests/"116 ]117 },118 "notification-url": "https://packagist.org/downloads/",119 "license": [120 "MIT"121 ],122 "authors": [123 {124 "name": "Fabien Potencier",125 "email": "[email protected]"126 },127 {128 "name": "Symfony Community",129 "homepage": "https://symfony.com/contributors"130 }131 ],132 "description": "Symfony Filesystem Component",133 "homepage": "https://symfony.com"134 },135 {136 "name": "symfony/polyfill-ctype",137 "version": "v1.10.0",138 "version_normalized": "1.10.0.0",139 "source": {140 "type": "git",141 "url": "https://github.com/symfony/polyfill-ctype.git",142 "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"143 },144 "dist": {145 "type": "zip",146 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",147 "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",148 "shasum": ""149 },150 "require": {151 "php": ">=5.3.3"152 },153 "suggest": {154 "ext-ctype": "For best performance"155 },156 "time": "2018-08-06T14:22:27+00:00",157 "type": "library",158 "extra": {159 "branch-alias": {160 "dev-master": "1.9-dev"161 }162 },163 "installation-source": "dist",164 "autoload": {165 "psr-4": {166 "Symfony\\Polyfill\\Ctype\\": ""167 },168 "files": [169 "bootstrap.php"170 ]171 },172 "notification-url": "https://packagist.org/downloads/",173 "license": [174 "MIT"175 ],176 "authors": [177 {178 "name": "Symfony Community",179 "homepage": "https://symfony.com/contributors"180 },181 {182 "name": "Gert de Pagter",183 "email": "[email protected]"184 }185 ],186 "description": "Symfony polyfill for ctype functions",187 "homepage": "https://symfony.com",188 "keywords": [189 "compatibility",190 "ctype",191 "polyfill",192 "portable"193 ]194 42 } 195 43 ]
Note: See TracChangeset
for help on using the changeset viewer.