Plugin Directory

Changeset 3092024


Ignore:
Timestamp:
05/24/2024 10:02:44 AM (22 months ago)
Author:
dotMailer
Message:

Updating trunk for version 7.2.1

Location:
dotmailer-sign-up-widget/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • dotmailer-sign-up-widget/trunk/admin/class-dotdigital-wordpress-admin.php

    r3041822 r3092024  
    9696    public function add_plugin_page_tabs()
    9797    {
     98        if (!$this->is_dd_wp_settings_page()) {
     99            return;
     100        }
    98101        foreach ($this->available_page_tabs as $page_tab) {
    99             if (!\is_a($page_tab, Dotdigital_WordPress_Page_Tab_Interface::class, \true)) {
    100                 continue;
    101             }
    102102            try {
    103103                $tab = new $page_tab();
    104                 $tab->initialise();
     104                if ($this->is_current_tab($tab)) {
     105                    $tab->initialise();
     106                }
     107                $this->page_tabs[$tab->get_slug()] = $tab;
    105108            } catch (\Exception $e) {
    106109                \error_log($e);
    107110                continue;
    108111            }
    109             $this->page_tabs[$tab->get_slug()] = $tab;
    110112        }
    111113    }
     
    117119    public function render_active_tab()
    118120    {
    119         $active_tab = $this->get_active_tab_slug();
    120121        foreach ($this->page_tabs as $page_tab) {
    121             if ($page_tab->get_url_slug() === $active_tab) {
     122            if ($this->is_current_tab($page_tab)) {
    122123                $page_tab->render();
    123124            }
     
    208209        return $a_name > $b_name ? -1 : 1;
    209210    }
     211    /**
     212     * Check if current page is ?page=dotdigital-for-wordpress-settings
     213     *
     214     * @return bool
     215     */
     216    private function is_dd_wp_settings_page()
     217    {
     218        return isset($_GET['page']) && \strpos(sanitize_text_field(wp_unslash($_GET['page'])), Dotdigital_WordPress_Settings_Admin::URL_SLUG) !== \false;
     219    }
     220    /**
     221     * Check if current tab is in query string
     222     *
     223     * @param Dotdigital_WordPress_Page_Tab_Interface $tab
     224     * @return bool
     225     */
     226    private function is_current_tab($tab)
     227    {
     228        return $this->get_active_tab_slug() === $tab->get_url_slug();
     229    }
    210230}
  • dotmailer-sign-up-widget/trunk/dm_signup_form.php

    r3059202 r3092024  
    99 * Plugin URI:        https://integrations.dotdigital.com/technology-partners/wordpress
    1010 * Description:       Add a "Subscribe to Newsletter" widget to your website that will insert your contact in one of your Dotdigital lists.
    11  * Version:           7.2.0
     11 * Version:           7.2.1
    1212 * Author:            dotdigital
    1313 * Author URI:        https://www.dotdigital.com/
     
    2525require_once __DIR__ . '/vendor/autoload.php';
    2626
    27 define( 'DOTDIGITAL_WORDPRESS_VERSION', '7.2.0' );
     27define( 'DOTDIGITAL_WORDPRESS_VERSION', '7.2.1' );
    2828define( 'DOTDIGITAL_WORDPRESS_PLUGIN_NAME', 'dotdigital-for-wordpress' );
    2929define( 'DOTDIGITAL_WORDPRESS_PLUGIN_SLUG', 'dotdigital_for_wordpress' );
  • dotmailer-sign-up-widget/trunk/includes/class-dotdigital-wordpress.php

    r3041822 r3092024  
    165165        $this->loader->add_action('admin_enqueue_scripts', $plugin_admin, 'enqueue_scripts');
    166166        $this->loader->add_action('admin_menu', $plugin_admin, 'add_plugin_admin_menus');
    167         $this->loader->add_action('admin_init', $plugin_admin, 'add_plugin_admin_page_actions', 5);
    168         $this->loader->add_action('admin_init', $plugin_admin, 'add_plugin_page_tabs', 5);
     167        $this->loader->add_action('admin_menu', $plugin_admin, 'add_plugin_admin_page_actions', 5);
     168        $this->loader->add_action('admin_menu', $plugin_admin, 'add_plugin_page_tabs', 5);
    169169    }
    170170    /**
  • dotmailer-sign-up-widget/trunk/readme.txt

    r3059202 r3092024  
    33Tags: email marketing, newsletter signup
    44Requires at least: 5.3
    5 Tested up to: 6.4.3
     5Tested up to: 6.5.3
    66Requires PHP: 7.4
    7 Stable tag: 7.2.0
     7Stable tag: 7.2.1
    88License: MIT
    99License URI: https://opensource.org/licenses/MIT
     
    7070== Changelog ==
    7171
     72= 7.2.1 =
     73
     74**Bug fixes**
     75- We've added restrictions around the loading of plugin menu tabs, to prevent clashes with other plugins.
     76
    7277= 7.2.0 =
    7378
    74 **Whats new**
     79**What's new**
    7580- Merchants can now add a `with_ajax` argument to the `[dotdigital-signup]` shortcode.
    7681
    7782**Bug fixes**
    7883- We standardised submission payloads between AJAX and non-AJAX modes, resolving an ‘undefined index’ bug in the widget controller.
    79 
    8084
    8185= 7.1.2 =
  • dotmailer-sign-up-widget/trunk/vendor/composer/installed.php

    r3059202 r3092024  
    33namespace Dotdigital_WordPress_Vendor;
    44
    5 return array('root' => array('name' => 'dotdigital/dotdigital-for-wordpress', 'pretty_version' => '7.2.0', 'version' => '7.2.0.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \false), 'versions' => array('clue/stream-filter' => array('pretty_version' => 'v1.6.0', 'version' => '1.6.0.0', 'reference' => 'd6169430c7731d8509da7aecd0af756a5747b78e', 'type' => 'library', 'install_path' => __DIR__ . '/../clue/stream-filter', 'aliases' => array(), 'dev_requirement' => \false), 'dotdigital/dotdigital-for-wordpress' => array('pretty_version' => '7.2.0', 'version' => '7.2.0.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'dotdigital/dotdigital-php' => array('pretty_version' => '2.3.1', 'version' => '2.3.1.0', 'reference' => '3263428cdc2ee9b94419ce8233f8e4267e593382', 'type' => 'library', 'install_path' => __DIR__ . '/../dotdigital/dotdigital-php', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/guzzle' => array('pretty_version' => '7.8.0', 'version' => '7.8.0.0', 'reference' => '1110f66a6530a40fe7aea0378fe608ee2b2248f9', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/guzzle', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/promises' => array('pretty_version' => '2.0.1', 'version' => '2.0.1.0', 'reference' => '111166291a0f8130081195ac4556a5587d7f1b5d', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/promises', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/psr7' => array('pretty_version' => '2.6.1', 'version' => '2.6.1.0', 'reference' => 'be45764272e8873c72dbe3d2edcfdfcc3bc9f727', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/psr7', 'aliases' => array(), 'dev_requirement' => \false), 'nesbot/carbon' => array('pretty_version' => '2.71.0', 'version' => '2.71.0.0', 'reference' => '98276233188583f2ff845a0f992a235472d9466a', 'type' => 'library', 'install_path' => __DIR__ . '/../nesbot/carbon', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/async-client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'php-http/client-common' => array('pretty_version' => '2.7.0', 'version' => '2.7.0.0', 'reference' => '880509727a447474d2a71b7d7fa5d268ddd3db4b', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/client-common', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'php-http/curl-client' => array('pretty_version' => '2.3.1', 'version' => '2.3.1.0', 'reference' => '085570be588f7cbdc4601e78886eea5b7051ad71', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/curl-client', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/discovery' => array('pretty_version' => '1.19.1', 'version' => '1.19.1.0', 'reference' => '57f3de01d32085fea20865f9b16fb0e69347c39e', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../php-http/discovery', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/httplug' => array('pretty_version' => '2.4.0', 'version' => '2.4.0.0', 'reference' => '625ad742c360c8ac580fcc647a1541d29e257f67', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/httplug', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/message' => array('pretty_version' => '1.16.0', 'version' => '1.16.0.0', 'reference' => '47a14338bf4ebd67d317bf1144253d7db4ab55fd', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/message', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/message-factory-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'php-http/promise' => array('pretty_version' => '1.2.0', 'version' => '1.2.0.0', 'reference' => 'ef4905bfb492ff389eb7f12e26925a0f20073050', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/promise', 'aliases' => array(), 'dev_requirement' => \false), 'psr/clock' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'reference' => 'e41a24703d4560fd0acb709162f73b8adfc3aa0d', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/clock', 'aliases' => array(), 'dev_requirement' => \false), 'psr/clock-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/http-client' => array('pretty_version' => '1.0.3', 'version' => '1.0.3.0', 'reference' => 'bb5906edc1c324c9a05aa0873d40117941e5fa90', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-client', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'psr/http-factory' => array('pretty_version' => '1.0.2', 'version' => '1.0.2.0', 'reference' => 'e616d01114759c4c489f93b099585439f795fe35', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-factory', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-factory-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'psr/http-message' => array('pretty_version' => '2.0', 'version' => '2.0.0.0', 'reference' => '402d35bcb92c70c026d1a6a9883f06b2ead23d71', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-message-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'ralouphie/getallheaders' => array('pretty_version' => '3.0.3', 'version' => '3.0.3.0', 'reference' => '120b605dfeb996808c31b6477290a714d356e822', 'type' => 'library', 'install_path' => __DIR__ . '/../ralouphie/getallheaders', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/deprecation-contracts' => array('pretty_version' => 'v2.5.2', 'version' => '2.5.2.0', 'reference' => 'e8b495ea28c1d97b5e0c121748d6f9b53d075c66', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/deprecation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/options-resolver' => array('pretty_version' => 'v5.4.21', 'version' => '5.4.21.0', 'reference' => '4fe5cf6ede71096839f0e4b4444d65dd3a7c1eb9', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/options-resolver', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-mbstring' => array('pretty_version' => 'v1.28.0', 'version' => '1.28.0.0', 'reference' => '42292d99c55abe617799667f454222c54c60e229', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php73' => array('pretty_version' => 'v1.28.0', 'version' => '1.28.0.0', 'reference' => 'fe2f306d1d9d346a7fee353d0d5012e401e984b5', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php73', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php80' => array('pretty_version' => 'v1.28.0', 'version' => '1.28.0.0', 'reference' => '6caa57379c4aec19c0a12a38b59b26487dcfe4b5', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation' => array('pretty_version' => 'v5.4.30', 'version' => '5.4.30.0', 'reference' => '8560dc532e4e48d331937532a7cbfd2a9f9f53ce', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-contracts' => array('pretty_version' => 'v2.5.2', 'version' => '2.5.2.0', 'reference' => '136b19dd05cdf0709db6537d058bcab6dd6e2dbe', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '2.3'))));
     5return array('root' => array('name' => 'dotdigital/dotdigital-for-wordpress', 'pretty_version' => '7.2.1', 'version' => '7.2.1.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \false), 'versions' => array('clue/stream-filter' => array('pretty_version' => 'v1.6.0', 'version' => '1.6.0.0', 'reference' => 'd6169430c7731d8509da7aecd0af756a5747b78e', 'type' => 'library', 'install_path' => __DIR__ . '/../clue/stream-filter', 'aliases' => array(), 'dev_requirement' => \false), 'dotdigital/dotdigital-for-wordpress' => array('pretty_version' => '7.2.1', 'version' => '7.2.1.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'dotdigital/dotdigital-php' => array('pretty_version' => '2.3.1', 'version' => '2.3.1.0', 'reference' => '3263428cdc2ee9b94419ce8233f8e4267e593382', 'type' => 'library', 'install_path' => __DIR__ . '/../dotdigital/dotdigital-php', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/guzzle' => array('pretty_version' => '7.8.0', 'version' => '7.8.0.0', 'reference' => '1110f66a6530a40fe7aea0378fe608ee2b2248f9', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/guzzle', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/promises' => array('pretty_version' => '2.0.1', 'version' => '2.0.1.0', 'reference' => '111166291a0f8130081195ac4556a5587d7f1b5d', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/promises', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/psr7' => array('pretty_version' => '2.6.1', 'version' => '2.6.1.0', 'reference' => 'be45764272e8873c72dbe3d2edcfdfcc3bc9f727', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/psr7', 'aliases' => array(), 'dev_requirement' => \false), 'nesbot/carbon' => array('pretty_version' => '2.71.0', 'version' => '2.71.0.0', 'reference' => '98276233188583f2ff845a0f992a235472d9466a', 'type' => 'library', 'install_path' => __DIR__ . '/../nesbot/carbon', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/async-client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'php-http/client-common' => array('pretty_version' => '2.7.0', 'version' => '2.7.0.0', 'reference' => '880509727a447474d2a71b7d7fa5d268ddd3db4b', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/client-common', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'php-http/curl-client' => array('pretty_version' => '2.3.1', 'version' => '2.3.1.0', 'reference' => '085570be588f7cbdc4601e78886eea5b7051ad71', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/curl-client', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/discovery' => array('pretty_version' => '1.19.1', 'version' => '1.19.1.0', 'reference' => '57f3de01d32085fea20865f9b16fb0e69347c39e', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../php-http/discovery', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/httplug' => array('pretty_version' => '2.4.0', 'version' => '2.4.0.0', 'reference' => '625ad742c360c8ac580fcc647a1541d29e257f67', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/httplug', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/message' => array('pretty_version' => '1.16.0', 'version' => '1.16.0.0', 'reference' => '47a14338bf4ebd67d317bf1144253d7db4ab55fd', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/message', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/message-factory-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'php-http/promise' => array('pretty_version' => '1.2.0', 'version' => '1.2.0.0', 'reference' => 'ef4905bfb492ff389eb7f12e26925a0f20073050', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/promise', 'aliases' => array(), 'dev_requirement' => \false), 'psr/clock' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'reference' => 'e41a24703d4560fd0acb709162f73b8adfc3aa0d', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/clock', 'aliases' => array(), 'dev_requirement' => \false), 'psr/clock-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/http-client' => array('pretty_version' => '1.0.3', 'version' => '1.0.3.0', 'reference' => 'bb5906edc1c324c9a05aa0873d40117941e5fa90', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-client', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'psr/http-factory' => array('pretty_version' => '1.0.2', 'version' => '1.0.2.0', 'reference' => 'e616d01114759c4c489f93b099585439f795fe35', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-factory', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-factory-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'psr/http-message' => array('pretty_version' => '2.0', 'version' => '2.0.0.0', 'reference' => '402d35bcb92c70c026d1a6a9883f06b2ead23d71', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-message-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'ralouphie/getallheaders' => array('pretty_version' => '3.0.3', 'version' => '3.0.3.0', 'reference' => '120b605dfeb996808c31b6477290a714d356e822', 'type' => 'library', 'install_path' => __DIR__ . '/../ralouphie/getallheaders', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/deprecation-contracts' => array('pretty_version' => 'v2.5.2', 'version' => '2.5.2.0', 'reference' => 'e8b495ea28c1d97b5e0c121748d6f9b53d075c66', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/deprecation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/options-resolver' => array('pretty_version' => 'v5.4.21', 'version' => '5.4.21.0', 'reference' => '4fe5cf6ede71096839f0e4b4444d65dd3a7c1eb9', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/options-resolver', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-mbstring' => array('pretty_version' => 'v1.28.0', 'version' => '1.28.0.0', 'reference' => '42292d99c55abe617799667f454222c54c60e229', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php73' => array('pretty_version' => 'v1.28.0', 'version' => '1.28.0.0', 'reference' => 'fe2f306d1d9d346a7fee353d0d5012e401e984b5', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php73', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php80' => array('pretty_version' => 'v1.28.0', 'version' => '1.28.0.0', 'reference' => '6caa57379c4aec19c0a12a38b59b26487dcfe4b5', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation' => array('pretty_version' => 'v5.4.30', 'version' => '5.4.30.0', 'reference' => '8560dc532e4e48d331937532a7cbfd2a9f9f53ce', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-contracts' => array('pretty_version' => 'v2.5.2', 'version' => '2.5.2.0', 'reference' => '136b19dd05cdf0709db6537d058bcab6dd6e2dbe', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '2.3'))));
  • dotmailer-sign-up-widget/trunk/vendor/scoper-autoload.php

    r3065490 r3092024  
    2929    }
    3030}
     31humbug_phpscoper_expose_class('DM_Widget', 'Dotdigital_WordPress_Vendor\DM_Widget');
     32humbug_phpscoper_expose_class('JsonException', 'Dotdigital_WordPress_Vendor\JsonException');
     33humbug_phpscoper_expose_class('Stringable', 'Dotdigital_WordPress_Vendor\Stringable');
     34humbug_phpscoper_expose_class('Attribute', 'Dotdigital_WordPress_Vendor\Attribute');
     35humbug_phpscoper_expose_class('PhpToken', 'Dotdigital_WordPress_Vendor\PhpToken');
     36humbug_phpscoper_expose_class('UnhandledMatchError', 'Dotdigital_WordPress_Vendor\UnhandledMatchError');
    3137humbug_phpscoper_expose_class('ValueError', 'Dotdigital_WordPress_Vendor\ValueError');
    32 humbug_phpscoper_expose_class('PhpToken', 'Dotdigital_WordPress_Vendor\PhpToken');
    33 humbug_phpscoper_expose_class('Stringable', 'Dotdigital_WordPress_Vendor\Stringable');
    34 humbug_phpscoper_expose_class('UnhandledMatchError', 'Dotdigital_WordPress_Vendor\UnhandledMatchError');
    35 humbug_phpscoper_expose_class('Attribute', 'Dotdigital_WordPress_Vendor\Attribute');
    36 humbug_phpscoper_expose_class('JsonException', 'Dotdigital_WordPress_Vendor\JsonException');
    3738humbug_phpscoper_expose_class('ComposerAutoloaderInit52e04b087b130fad6aa057801dbdb665', 'Dotdigital_WordPress_Vendor\ComposerAutoloaderInit52e04b087b130fad6aa057801dbdb665');
    38 humbug_phpscoper_expose_class('DM_Widget', 'Dotdigital_WordPress_Vendor\DM_Widget');
    3939
    4040// Function aliases. For more information see:
Note: See TracChangeset for help on using the changeset viewer.