Plugin Directory

Changeset 2965981


Ignore:
Timestamp:
09/12/2023 03:24:16 PM (3 years ago)
Author:
axeptio
Message:

version 2.1.1 release

Location:
axeptio-sdk-integration
Files:
802 added
6 edited

Legend:

Unmodified
Added
Removed
  • axeptio-sdk-integration/trunk/axeptio-wordpress-plugin.php

    r2965878 r2965981  
    44    Plugin URI: https://www.axeptio.eu/
    55    Description: Axeptio allows you to make your website compliant with GDPR.
    6     Version: 2.1
     6    Version: 2.1.1
    77    Author: axeptio
    88    License: GPLv3
     
    1515use Axeptio\Models\Settings;
    1616
    17 define( 'XPWP_VERSION', '2.1' );
     17define( 'XPWP_VERSION', '2.1.1' );
    1818define( 'XPWP_URL', plugin_dir_url( __FILE__ ) );
    1919define( 'XPWP_PATH', plugin_dir_path( __FILE__ ) );
  • axeptio-sdk-integration/trunk/includes/classes/frontend/class-hook-modifier.php

    r2965878 r2965981  
    3737    const WHITELISTED_HOOK = array(
    3838        'map_meta_cap',
     39        'user_has_cap',
    3940        'wp_after_insert_post',
    4041        'muplugins_loaded',
     
    304305        $matching_hook = false;
    305306
     307        if ( 'none' === $intercepted_plugin['mode'] ) {
     308            return true;
     309        }
     310
    306311        if ( $this->is_whitelisted_hook( $hook ) ) {
    307312            return true;
  • axeptio-sdk-integration/trunk/readme.txt

    r2965878 r2965981  
    44Requires at least: 5.0
    55Tested up to: 6.3.1
    6 Stable tag: 2.1
     6Stable tag: 2.1.1
    77Requires PHP: 7.4
    88License: GPLv3
     
    6868== Changelog ==
    6969
     70### 2.1.1 ###
     71
     72Fix when hook or shortcode is set to "none" inb the extension manager.
     73
    7074### 2.1 ###
    7175
  • axeptio-sdk-integration/trunk/vendor/autoload.php

    r2965878 r2965981  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInitffe80590dcf2f0577fd9ca4ce5a9aceb::getLoader();
     25return ComposerAutoloaderInitd5d0584dc2024520c2a81874b43e7c90::getLoader();
  • axeptio-sdk-integration/trunk/vendor/composer/autoload_real.php

    r2965878 r2965981  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInitffe80590dcf2f0577fd9ca4ce5a9aceb
     5class ComposerAutoloaderInitd5d0584dc2024520c2a81874b43e7c90
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInitffe80590dcf2f0577fd9ca4ce5a9aceb', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInitd5d0584dc2024520c2a81874b43e7c90', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInitffe80590dcf2f0577fd9ca4ce5a9aceb', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInitd5d0584dc2024520c2a81874b43e7c90', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInitffe80590dcf2f0577fd9ca4ce5a9aceb::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInitd5d0584dc2024520c2a81874b43e7c90::getInitializer($loader));
    3333
    3434        $loader->register(true);
    3535
    36         $filesToLoad = \Composer\Autoload\ComposerStaticInitffe80590dcf2f0577fd9ca4ce5a9aceb::$files;
     36        $filesToLoad = \Composer\Autoload\ComposerStaticInitd5d0584dc2024520c2a81874b43e7c90::$files;
    3737        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
    3838            if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • axeptio-sdk-integration/trunk/vendor/composer/autoload_static.php

    r2965878 r2965981  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInitffe80590dcf2f0577fd9ca4ce5a9aceb
     7class ComposerStaticInitd5d0584dc2024520c2a81874b43e7c90
    88{
    99    public static $files = array (
     
    599599    {
    600600        return \Closure::bind(function () use ($loader) {
    601             $loader->prefixLengthsPsr4 = ComposerStaticInitffe80590dcf2f0577fd9ca4ce5a9aceb::$prefixLengthsPsr4;
    602             $loader->prefixDirsPsr4 = ComposerStaticInitffe80590dcf2f0577fd9ca4ce5a9aceb::$prefixDirsPsr4;
    603             $loader->classMap = ComposerStaticInitffe80590dcf2f0577fd9ca4ce5a9aceb::$classMap;
     601            $loader->prefixLengthsPsr4 = ComposerStaticInitd5d0584dc2024520c2a81874b43e7c90::$prefixLengthsPsr4;
     602            $loader->prefixDirsPsr4 = ComposerStaticInitd5d0584dc2024520c2a81874b43e7c90::$prefixDirsPsr4;
     603            $loader->classMap = ComposerStaticInitd5d0584dc2024520c2a81874b43e7c90::$classMap;
    604604
    605605        }, null, ClassLoader::class);
Note: See TracChangeset for help on using the changeset viewer.