Plugin Directory

Changeset 2011517


Ignore:
Timestamp:
01/13/2019 03:03:16 PM (7 years ago)
Author:
Fleuv
Message:

Second attempt to fix class loading error

Location:
fix-content-links/trunk
Files:
1 added
7 edited

Legend:

Unmodified
Added
Removed
  • fix-content-links/trunk/index.php

    r2011515 r2011517  
    44 * Plugin URI:        http://wordpress.org/plugins/fix-content-links/
    55 * Description:       Replaces incorrect links to sources located in the uploads, plugins, themes or wp-content folder.
    6  * Version:           1.0.1
     6 * Version:           1.0.2
    77 * Author:            LSVH
    88 * Author URI:        https://lsvh.org/
  • fix-content-links/trunk/readme.txt

    r2011515 r2011517  
    22Tags: content, tool
    33Requires at least: 5.0
    4 Requires PHP: 7.0
     4Requires PHP: 7.1
    55Tested up to: 5.0.2
    66Stable tag: trunk
  • fix-content-links/trunk/vendor/composer/autoload_classmap.php

    r2011515 r2011517  
    77
    88return 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',
    379);
  • fix-content-links/trunk/vendor/composer/autoload_psr4.php

    r2011515 r2011517  
    77
    88return array(
    9     'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),
    10     'Symfony\\Component\\Filesystem\\' => array($vendorDir . '/symfony/filesystem'),
    119    'LSVH\\WordPress\\FixContentLinks\\' => array($baseDir . '/src'),
    1210    'LSVH\\WordPress\\DynamicConfig\\' => array($vendorDir . '/lsvh/dynamic-wp-config/src'),
    13     'LSVH\\BuildPackage\\' => array($vendorDir . '/lsvh/build-package/src'),
    1411);
  • fix-content-links/trunk/vendor/composer/autoload_real.php

    r2011515 r2011517  
    4848        $loader->register(true);
    4949
    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 
    5950        return $loader;
    6051    }
    6152}
    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  
    77class ComposerStaticInite7f499ed52793ab4f83d58c663c138f2
    88{
    9     public static $files = array (
    10         '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
    11     );
    12 
    139    public static $prefixLengthsPsr4 = array (
    14         'S' =>
    15         array (
    16             'Symfony\\Polyfill\\Ctype\\' => 23,
    17             'Symfony\\Component\\Filesystem\\' => 29,
    18         ),
    1910        'L' =>
    2011        array (
    2112            'LSVH\\WordPress\\FixContentLinks\\' => 31,
    2213            'LSVH\\WordPress\\DynamicConfig\\' => 29,
    23             'LSVH\\BuildPackage\\' => 18,
    2414        ),
    2515    );
    2616
    2717    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         ),
    3618        'LSVH\\WordPress\\FixContentLinks\\' =>
    3719        array (
     
    4224            0 => __DIR__ . '/..' . '/lsvh/dynamic-wp-config/src',
    4325        ),
    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',
    7926    );
    8027
     
    8431            $loader->prefixLengthsPsr4 = ComposerStaticInite7f499ed52793ab4f83d58c663c138f2::$prefixLengthsPsr4;
    8532            $loader->prefixDirsPsr4 = ComposerStaticInite7f499ed52793ab4f83d58c663c138f2::$prefixDirsPsr4;
    86             $loader->classMap = ComposerStaticInite7f499ed52793ab4f83d58c663c138f2::$classMap;
    8733
    8834        }, null, ClassLoader::class);
  • fix-content-links/trunk/vendor/composer/installed.json

    r2011515 r2011517  
    11[
    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": null
    11         },
    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     },
    422    {
    433        "name": "lsvh/dynamic-wp-config",
     
    8040        ],
    8141        "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         ]
    19442    }
    19543]
Note: See TracChangeset for help on using the changeset viewer.