Plugin Directory

Changeset 2457501

Timestamp:
01/16/2021 12:03:21 PM (4 years ago)
Author:
h71
Message:

version-1.1.1

Location:
super-reactions
Files:
58 added
9 edited

Legend:

Unmodified
Added
Removed
  • super-reactions/trunk/constants.php

    r2457492 r2457501  
    66define( 'SREA_URL', plugin_dir_url( __FILE__ ) );
    77
    8 define( 'SREA_VERSION', '1.1.0' );
     8define( 'SREA_VERSION', '1.1.' );
    99define( 'SREA_SLUG', 'super_reactions' );
    1010
  • super-reactions/trunk/includes/class-init.php

    r2452824 r2457501  
    22
    33namespace SREA\Includes;
     4
    45class Init {
    56
  • super-reactions/trunk/readme.txt

    r2457492 r2457501  
    66Tested up to: 5.6
    77Requires PHP: 7.0
    8 Stable tag: 1.1.0
     8Stable tag: 1.1.
    99License: GPLv3
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    2727== Changelog ==
    2828
     29
     30
    2931
    3032= 1.1.0 =
  • super-reactions/trunk/super-reactions.php

    r2457492 r2457501  
    44 * Plugin Name: Super Reactions
    55 * Description: Get meaningful reactions from users.
    6  * Version:     1.1.0
     6 * Version:     1.1.
    77 * Author:      Super Reactions Team
    88 * Text Domain: super-reactions
     
    2424require_once 'vendor/autoload.php';
    2525
     26
     27
     28
     29
     30
     31
     32
     33
     34
     35
     36
     37
     38
    2639Admin::instance();
    2740Assets::instance();
  • super-reactions/trunk/vendor/autoload.php

    r2452813 r2457501  
    55require_once __DIR__ . '/composer/autoload_real.php';
    66
    7 return ComposerAutoloaderInitfce5cfc7b591084afbe8890ed233a6f2::getLoader();
     7return ComposerAutoloaderInit::getLoader();
  • super-reactions/trunk/vendor/composer/autoload_classmap.php

    r2457492 r2457501  
    1212    'SREA\\Includes\\Assets' => $baseDir . '/includes/class-assets.php',
    1313    'SREA\\Includes\\DB' => $baseDir . '/includes/class-db.php',
     14
    1415    'SREA\\Includes\\SREA_Reactions' => $baseDir . '/includes/class-reactions.php',
    1516);
  • super-reactions/trunk/vendor/composer/autoload_real.php

    r2452813 r2457501  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInitfce5cfc7b591084afbe8890ed233a6f2
     5class ComposerAutoloaderInit
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         spl_autoload_register(array('ComposerAutoloaderInitfce5cfc7b591084afbe8890ed233a6f2', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInit', 'loadClassLoader'), true, true);
    2626        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    27         spl_autoload_unregister(array('ComposerAutoloaderInitfce5cfc7b591084afbe8890ed233a6f2', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInit', 'loadClassLoader'));
    2828
    2929        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
     
    3131            require __DIR__ . '/autoload_static.php';
    3232
    33             call_user_func(\Composer\Autoload\ComposerStaticInitfce5cfc7b591084afbe8890ed233a6f2::getInitializer($loader));
     33            call_user_func(\Composer\Autoload\ComposerStaticInit::getInitializer($loader));
    3434        } else {
    3535            $map = require __DIR__ . '/autoload_namespaces.php';
     
    5252
    5353        if ($useStaticLoader) {
    54             $includeFiles = Composer\Autoload\ComposerStaticInitfce5cfc7b591084afbe8890ed233a6f2::$files;
     54            $includeFiles = Composer\Autoload\ComposerStaticInit::$files;
    5555        } else {
    5656            $includeFiles = require __DIR__ . '/autoload_files.php';
    5757        }
    5858        foreach ($includeFiles as $fileIdentifier => $file) {
    59             composerRequirefce5cfc7b591084afbe8890ed233a6f2($fileIdentifier, $file);
     59            composerRequire($fileIdentifier, $file);
    6060        }
    6161
     
    6464}
    6565
    66 function composerRequirefce5cfc7b591084afbe8890ed233a6f2($fileIdentifier, $file)
     66function composerRequire($fileIdentifier, $file)
    6767{
    6868    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • super-reactions/trunk/vendor/composer/autoload_static.php

    r2457492 r2457501  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInitfce5cfc7b591084afbe8890ed233a6f2
     7class ComposerStaticInit
    88{
    99    public static $files = array (
     
    2424        'SREA\\Includes\\Assets' => __DIR__ . '/../..' . '/includes/class-assets.php',
    2525        'SREA\\Includes\\DB' => __DIR__ . '/../..' . '/includes/class-db.php',
     26
    2627        'SREA\\Includes\\SREA_Reactions' => __DIR__ . '/../..' . '/includes/class-reactions.php',
    2728    );
     
    3031    {
    3132        return \Closure::bind(function () use ($loader) {
    32             $loader->classMap = ComposerStaticInitfce5cfc7b591084afbe8890ed233a6f2::$classMap;
     33            $loader->classMap = ComposerStaticInit::$classMap;
    3334
    3435        }, null, ClassLoader::class);
  • super-reactions/trunk/vendor/composer/installed.json

    r2452813 r2457501  
    1 []
     1{
     2    "packages": [],
     3    "dev": true,
     4    "dev-package-names": []
     5}
Note: See TracChangeset for help on using the changeset viewer.