Changeset 3445285
- Timestamp:
- 01/23/2026 04:15:12 AM (2 months ago)
- Location:
- bcodecraft-submissions-cf7/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (1 diff)
-
vendor/autoload.php (modified) (1 diff)
-
vendor/composer/autoload_real.php (modified) (2 diffs)
-
vendor/composer/autoload_static.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bcodecraft-submissions-cf7/trunk/readme.txt
r3445282 r3445285 42 42 * [Support on Ko-fi](https://ko-fi.com/boyduang) 43 43 44 **Source Code & Build Information:**45 46 The full uncompressed source code is included in the `src/` directory of this plugin. This includes:47 * React/JavaScript components in `src/components/`48 * SCSS stylesheets in `src/` directory49 * All source files needed to rebuild the compressed assets50 51 To rebuild from source:52 1. Run `npm install` to install dependencies53 2. Run `npm run build:prod` to build production assets54 3. Run `composer install --no-dev` to install PHP dependencies55 56 44 == Installation == 57 45 58 1. Upload the plugin files to the `/wp-content/plugins/bcodecraft-submissions- for-contact-form-7` directory, or install the plugin through the WordPress plugins screen directly.46 1. Upload the plugin files to the `/wp-content/plugins/bcodecraft-submissions-cf7` directory, or install the plugin through the WordPress plugins screen directly. 59 47 2. Activate the plugin through the 'Plugins' screen in WordPress. 60 48 3. Make sure Contact Form 7 is installed and activated. -
bcodecraft-submissions-cf7/trunk/vendor/autoload.php
r3445282 r3445285 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 8019e354835060e64c382901bfd9936c::getLoader();25 return ComposerAutoloaderInit62281ebaaedab70c69191001a3655069::getLoader(); -
bcodecraft-submissions-cf7/trunk/vendor/composer/autoload_real.php
r3445282 r3445285 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 8019e354835060e64c382901bfd9936c5 class ComposerAutoloaderInit62281ebaaedab70c69191001a3655069 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 8019e354835060e64c382901bfd9936c', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit62281ebaaedab70c69191001a3655069', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 8019e354835060e64c382901bfd9936c', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit62281ebaaedab70c69191001a3655069', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit 8019e354835060e64c382901bfd9936c::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInit62281ebaaedab70c69191001a3655069::getInitializer($loader)); 33 33 34 34 $loader->register(true); -
bcodecraft-submissions-cf7/trunk/vendor/composer/autoload_static.php
r3445282 r3445285 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 8019e354835060e64c382901bfd9936c7 class ComposerStaticInit62281ebaaedab70c69191001a3655069 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 28 28 { 29 29 return \Closure::bind(function () use ($loader) { 30 $loader->prefixLengthsPsr4 = ComposerStaticInit 8019e354835060e64c382901bfd9936c::$prefixLengthsPsr4;31 $loader->prefixDirsPsr4 = ComposerStaticInit 8019e354835060e64c382901bfd9936c::$prefixDirsPsr4;32 $loader->classMap = ComposerStaticInit 8019e354835060e64c382901bfd9936c::$classMap;30 $loader->prefixLengthsPsr4 = ComposerStaticInit62281ebaaedab70c69191001a3655069::$prefixLengthsPsr4; 31 $loader->prefixDirsPsr4 = ComposerStaticInit62281ebaaedab70c69191001a3655069::$prefixDirsPsr4; 32 $loader->classMap = ComposerStaticInit62281ebaaedab70c69191001a3655069::$classMap; 33 33 34 34 }, null, ClassLoader::class);
Note: See TracChangeset
for help on using the changeset viewer.