Changeset 3092024
- Timestamp:
- 05/24/2024 10:02:44 AM (22 months ago)
- Location:
- dotmailer-sign-up-widget/trunk
- Files:
-
- 6 edited
-
admin/class-dotdigital-wordpress-admin.php (modified) (3 diffs)
-
dm_signup_form.php (modified) (2 diffs)
-
includes/class-dotdigital-wordpress.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
vendor/composer/installed.php (modified) (1 diff)
-
vendor/scoper-autoload.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dotmailer-sign-up-widget/trunk/admin/class-dotdigital-wordpress-admin.php
r3041822 r3092024 96 96 public function add_plugin_page_tabs() 97 97 { 98 if (!$this->is_dd_wp_settings_page()) { 99 return; 100 } 98 101 foreach ($this->available_page_tabs as $page_tab) { 99 if (!\is_a($page_tab, Dotdigital_WordPress_Page_Tab_Interface::class, \true)) {100 continue;101 }102 102 try { 103 103 $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; 105 108 } catch (\Exception $e) { 106 109 \error_log($e); 107 110 continue; 108 111 } 109 $this->page_tabs[$tab->get_slug()] = $tab;110 112 } 111 113 } … … 117 119 public function render_active_tab() 118 120 { 119 $active_tab = $this->get_active_tab_slug();120 121 foreach ($this->page_tabs as $page_tab) { 121 if ($ page_tab->get_url_slug() === $active_tab) {122 if ($this->is_current_tab($page_tab)) { 122 123 $page_tab->render(); 123 124 } … … 208 209 return $a_name > $b_name ? -1 : 1; 209 210 } 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 } 210 230 } -
dotmailer-sign-up-widget/trunk/dm_signup_form.php
r3059202 r3092024 9 9 * Plugin URI: https://integrations.dotdigital.com/technology-partners/wordpress 10 10 * 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. 011 * Version: 7.2.1 12 12 * Author: dotdigital 13 13 * Author URI: https://www.dotdigital.com/ … … 25 25 require_once __DIR__ . '/vendor/autoload.php'; 26 26 27 define( 'DOTDIGITAL_WORDPRESS_VERSION', '7.2. 0' );27 define( 'DOTDIGITAL_WORDPRESS_VERSION', '7.2.1' ); 28 28 define( 'DOTDIGITAL_WORDPRESS_PLUGIN_NAME', 'dotdigital-for-wordpress' ); 29 29 define( 'DOTDIGITAL_WORDPRESS_PLUGIN_SLUG', 'dotdigital_for_wordpress' ); -
dotmailer-sign-up-widget/trunk/includes/class-dotdigital-wordpress.php
r3041822 r3092024 165 165 $this->loader->add_action('admin_enqueue_scripts', $plugin_admin, 'enqueue_scripts'); 166 166 $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); 169 169 } 170 170 /** -
dotmailer-sign-up-widget/trunk/readme.txt
r3059202 r3092024 3 3 Tags: email marketing, newsletter signup 4 4 Requires at least: 5.3 5 Tested up to: 6. 4.35 Tested up to: 6.5.3 6 6 Requires PHP: 7.4 7 Stable tag: 7.2. 07 Stable tag: 7.2.1 8 8 License: MIT 9 9 License URI: https://opensource.org/licenses/MIT … … 70 70 == Changelog == 71 71 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 72 77 = 7.2.0 = 73 78 74 **What ’s new**79 **What's new** 75 80 - Merchants can now add a `with_ajax` argument to the `[dotdigital-signup]` shortcode. 76 81 77 82 **Bug fixes** 78 83 - We standardised submission payloads between AJAX and non-AJAX modes, resolving an ‘undefined index’ bug in the widget controller. 79 80 84 81 85 = 7.1.2 = -
dotmailer-sign-up-widget/trunk/vendor/composer/installed.php
r3059202 r3092024 3 3 namespace Dotdigital_WordPress_Vendor; 4 4 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'))));5 return 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 29 29 } 30 30 } 31 humbug_phpscoper_expose_class('DM_Widget', 'Dotdigital_WordPress_Vendor\DM_Widget'); 32 humbug_phpscoper_expose_class('JsonException', 'Dotdigital_WordPress_Vendor\JsonException'); 33 humbug_phpscoper_expose_class('Stringable', 'Dotdigital_WordPress_Vendor\Stringable'); 34 humbug_phpscoper_expose_class('Attribute', 'Dotdigital_WordPress_Vendor\Attribute'); 35 humbug_phpscoper_expose_class('PhpToken', 'Dotdigital_WordPress_Vendor\PhpToken'); 36 humbug_phpscoper_expose_class('UnhandledMatchError', 'Dotdigital_WordPress_Vendor\UnhandledMatchError'); 31 37 humbug_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');37 38 humbug_phpscoper_expose_class('ComposerAutoloaderInit52e04b087b130fad6aa057801dbdb665', 'Dotdigital_WordPress_Vendor\ComposerAutoloaderInit52e04b087b130fad6aa057801dbdb665'); 38 humbug_phpscoper_expose_class('DM_Widget', 'Dotdigital_WordPress_Vendor\DM_Widget');39 39 40 40 // Function aliases. For more information see:
Note: See TracChangeset
for help on using the changeset viewer.