Changeset 2598776
- Timestamp:
- 09/14/2021 03:08:27 PM (4 years ago)
- Location:
- simple-smtp
- Files:
-
- 22 edited
- 1 copied
-
tags/1.2.1 (copied) (copied from simple-smtp/trunk)
-
tags/1.2.1/assets/smtp-config.css (modified) (1 diff)
-
tags/1.2.1/readme.txt (modified) (2 diffs)
-
tags/1.2.1/src/log/class-logtable.php (modified) (1 diff)
-
tags/1.2.1/src/settings/class-mailview.php (modified) (1 diff)
-
tags/1.2.1/src/settings/class-multisite.php (modified) (4 diffs)
-
tags/1.2.1/src/settings/class-singular.php (modified) (2 diffs)
-
tags/1.2.1/vendor/autoload.php (modified) (1 diff)
-
tags/1.2.1/vendor/composer/autoload_real.php (modified) (3 diffs)
-
tags/1.2.1/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/1.2.1/vendor/composer/installed.php (modified) (2 diffs)
-
tags/1.2.1/wp-simple-smtp.php (modified) (2 diffs)
-
trunk/assets/smtp-config.css (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/log/class-logtable.php (modified) (1 diff)
-
trunk/src/settings/class-mailview.php (modified) (1 diff)
-
trunk/src/settings/class-multisite.php (modified) (4 diffs)
-
trunk/src/settings/class-singular.php (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (3 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/wp-simple-smtp.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-smtp/tags/1.2.1/assets/smtp-config.css
r2467283 r2598776 35 35 background-color: #dc3545; 36 36 } 37 38 .wpsmtp-multisite-table td { 39 line-height: 1.4em; 40 } 41 .wpsmtp-multisite-table td, 42 .wpsmtp-multisite-table th { 43 padding: 8px 10px; 44 } -
simple-smtp/tags/1.2.1/readme.txt
r2597603 r2598776 5 5 Tested up to: 5.8 6 6 Requires PHP: 7.0 7 Stable tag: 1.2 7 Stable tag: 1.2.1 8 8 License: MIT 9 9 … … 73 73 74 74 == Changelog == 75 = 1.2.1 = 76 * Change: Multisite listing table improvements. Thanks to [Kebbet](https://github.com/kebbet) ([#50](https://github.com/soup-bowl/wp-simple-smtp/issues/50)). 77 * Fix: Line break issue when viewing emails in the site log. Thanks to [Kebbet](https://github.com/kebbet) [#47](https://github.com/soup-bowl/wp-simple-smtp/issues/47). 78 * Fix: Missed localisations in the multisite table. Thanks to [Kebbet](https://github.com/kebbet) [#45](https://github.com/soup-bowl/wp-simple-smtp/issues/45). 79 75 80 = 1.2 = 76 81 * New: Multisite settings for admin visibility and override settings ([#6](https://github.com/soup-bowl/wp-simple-smtp/issues/6)). -
simple-smtp/tags/1.2.1/src/log/class-logtable.php
r2467283 r2598776 195 195 $resend = "<span class=\"view\"><a href=\"{$resend_url}\" aria-label=\"View\">{$resend_label}</a></span>"; 196 196 } else { 197 $resend = '<span class="view"> Resent</span>';197 $resend = '<span class="view">' . _x( 'Resent', 'Greyed out action link when an e-mail has been resent', 'simple-smtp' ) . '</span>'; 198 198 } 199 199 -
simple-smtp/tags/1.2.1/src/settings/class-mailview.php
r2467283 r2598776 66 66 <h2 class="hndle"><?php echo esc_html( $log->get_subject() ); ?></h2> 67 67 <div class="inside"> 68 <?php echo wp_kses_post( $log->get_body() ); ?>68 <?php echo wp_kses_post( wpautop( $log->get_body() ) ); ?> 69 69 </div> 70 70 </div> -
simple-smtp/tags/1.2.1/src/settings/class-multisite.php
r2597603 r2598776 78 78 $this->settings_field_generator( 'pass', __( 'Password', 'simple-smtp' ), 'password', '', '', true ); 79 79 $this->settings_field_generator( 'from', __( 'Force from', 'simple-smtp' ), 'email', '[email protected]', '', true ); 80 $this->settings_field_generator( 'fromname', __( 'Force from name', 'simple-smtp' ), 'text', 'WordPress System', '', true );80 $this->settings_field_generator( 'fromname', __( 'Force from name', 'simple-smtp' ), 'text', _x( 'WordPress System', 'Force from e-mail address', 'simple-smtp' ), '', true ); 81 81 $this->settings_field_generator_multiple( 'sec', __( 'Security', 'simple-smtp' ), $this->acceptable_security_types(), 'dropdown', '', '', true ); 82 82 $this->settings_field_generator( 'noverifyssl', __( 'Disable SSL Verification', 'simple-smtp' ), 'checkbox', '', __( 'Do not disable this unless you know what you\'re doing.', 'simple-smtp' ), true ); … … 89 89 function () { 90 90 $collection = []; 91 92 $sites = get_sites(); 91 $sites = get_sites(); 92 93 93 foreach ( $sites as $site ) { 94 $site_details = get_blog_details( array( 'blog_id' => $site->blog_id ) ); 95 $url = $site_details->siteurl; 96 $name = $site_details->blogname; 97 $string = \sprintf( 98 // translators: Tooltip to clarify to the user clicking the link will take them to the child SMTP settings. 99 _x( 'Go to settings for %s', 'Sub site name', 'simple-smtp' ), 100 $name 101 ); 94 102 $collection[] = [ 95 103 'id' => $site->blog_id, 96 'url' => $site->domain . $site->path, 97 'settings' => add_query_arg( [ 'page' => 'wpsimplesmtp' ], $site->domain . $site->path . 'wp-admin/options-general.php' ), 104 'url' => $url, 105 'string' => $string, 106 'name' => $name, 107 'settings' => add_query_arg( [ 'page' => 'wpsimplesmtp' ], get_admin_url( $site->blog_id ) . 'options-general.php' ), 98 108 'no_set' => get_network_option( $site->blog_id, 'wpssmtp_disable_settings', 0 ), 99 109 'no_log' => get_network_option( $site->blog_id, 'wpssmtp_disable_logging', 0 ), … … 102 112 103 113 ?> 104 <table class="wp-list-table widefat striped ">114 <table class="wp-list-table widefat striped wpsmtp-multisite-table"> 105 115 <thead> 106 116 <tr> 107 <th> Site</th>108 <th> Disable Settings</th>109 <th> Disable Logging</th>117 <th><?php esc_html_e( 'Site', 'simple-smtp' ); ?></th> 118 <th><?php esc_html_e( 'Disable Settings', 'simple-smtp' ); ?></th> 119 <th><?php esc_html_e( 'Disable Logging', 'simple-smtp' ); ?></th> 110 120 </tr> 111 121 </thead> … … 113 123 <?php foreach ( $collection as $site ) : ?> 114 124 <tr> 115 <td><a href="<?php echo esc_url( $site['settings'] ); ?>" ><?php echo esc_url( $site['url'] ); ?></a></td>125 <td><a href="<?php echo esc_url( $site['settings'] ); ?>" title="<?php echo esc_attr( $site['string'] ); ?>"><?php echo esc_attr( $site['name'] ); ?></a><br /><?php echo esc_url( $site['url'] ); ?></td> 116 126 <td><input type='checkbox' name='wpssmtp_perm_set_s<?php echo (int) $site['id']; ?>' <?php checked( $site['no_set'], 1 ); ?> value='1'></td> 117 127 <td><input type='checkbox' name='wpssmtp_perm_log_s<?php echo (int) $site['id']; ?>' <?php checked( $site['no_log'], 1 ); ?> value='1'></td> -
simple-smtp/tags/1.2.1/src/settings/class-singular.php
r2597603 r2598776 148 148 $this->settings_field_generator( 'pass', __( 'Password', 'simple-smtp' ), 'password', '' ); 149 149 $this->settings_field_generator( 'from', __( 'Force from', 'simple-smtp' ), 'email', '[email protected]' ); 150 $this->settings_field_generator( 'fromname', __( 'Force from name', 'simple-smtp' ), 'text', 'WordPress System');150 $this->settings_field_generator( 'fromname', __( 'Force from name', 'simple-smtp' ), 'text', _x( 'WordPress System', 'Force from e-mail address', 'simple-smtp' ), '', true ); 151 151 $this->settings_field_generator_multiple( 'sec', __( 'Security', 'simple-smtp' ), $this->acceptable_security_types(), 'dropdown' ); 152 152 $this->settings_field_generator( 'noverifyssl', __( 'Disable SSL Verification', 'simple-smtp' ), 'checkbox', '', __( 'Do not disable this unless you know what you\'re doing.', 'simple-smtp' ) ); … … 174 174 ?> 175 175 <input class='regular-text ltr' type='text' name='wpssmtp_test_email_recipient' value='<?php echo esc_attr( wp_get_current_user()->user_email ); ?>'> 176 <p class='description'><?php esc_html_e( 'Sep erate multiple emails with a semi-colon (;).', 'simple-smtp' ); ?></p>176 <p class='description'><?php esc_html_e( 'Separate multiple emails with a semi-colon (;).', 'simple-smtp' ); ?></p> 177 177 <?php 178 178 }, -
simple-smtp/tags/1.2.1/vendor/autoload.php
r2597603 r2598776 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit 06627139f41c8315a2db09775b77e8ca::getLoader();7 return ComposerAutoloaderInit1e1158311068496fe1690fa987e207fd::getLoader(); -
simple-smtp/tags/1.2.1/vendor/composer/autoload_real.php
r2597603 r2598776 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 06627139f41c8315a2db09775b77e8ca5 class ComposerAutoloaderInit1e1158311068496fe1690fa987e207fd 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit 06627139f41c8315a2db09775b77e8ca', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInit1e1158311068496fe1690fa987e207fd', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); 27 spl_autoload_unregister(array('ComposerAutoloaderInit 06627139f41c8315a2db09775b77e8ca', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit1e1158311068496fe1690fa987e207fd', 'loadClassLoader')); 28 28 29 29 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 31 31 require __DIR__ . '/autoload_static.php'; 32 32 33 call_user_func(\Composer\Autoload\ComposerStaticInit 06627139f41c8315a2db09775b77e8ca::getInitializer($loader));33 call_user_func(\Composer\Autoload\ComposerStaticInit1e1158311068496fe1690fa987e207fd::getInitializer($loader)); 34 34 } else { 35 35 $map = require __DIR__ . '/autoload_namespaces.php'; -
simple-smtp/tags/1.2.1/vendor/composer/autoload_static.php
r2597603 r2598776 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 06627139f41c8315a2db09775b77e8ca7 class ComposerStaticInit1e1158311068496fe1690fa987e207fd 8 8 { 9 9 public static $classMap = array ( … … 27 27 { 28 28 return \Closure::bind(function () use ($loader) { 29 $loader->classMap = ComposerStaticInit 06627139f41c8315a2db09775b77e8ca::$classMap;29 $loader->classMap = ComposerStaticInit1e1158311068496fe1690fa987e207fd::$classMap; 30 30 31 31 }, null, ClassLoader::class); -
simple-smtp/tags/1.2.1/vendor/composer/installed.php
r2597603 r2598776 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => '1.2 ',4 'version' => '1.2. 0.0',3 'pretty_version' => '1.2.1', 4 'version' => '1.2.1.0', 5 5 'type' => 'library', 6 6 'install_path' => __DIR__ . '/../../', 7 7 'aliases' => array(), 8 'reference' => ' 9093cf0dbda09a8ec4c0a05dca3b71d9fc282e35',8 'reference' => '7352531bcbb2df4d0a59c7c7fa966b1d7228b456', 9 9 'name' => 'soup-bowl/wpsimplesmtp', 10 10 'dev' => false, … … 12 12 'versions' => array( 13 13 'soup-bowl/wpsimplesmtp' => array( 14 'pretty_version' => '1.2 ',15 'version' => '1.2. 0.0',14 'pretty_version' => '1.2.1', 15 'version' => '1.2.1.0', 16 16 'type' => 'library', 17 17 'install_path' => __DIR__ . '/../../', 18 18 'aliases' => array(), 19 'reference' => ' 9093cf0dbda09a8ec4c0a05dca3b71d9fc282e35',19 'reference' => '7352531bcbb2df4d0a59c7c7fa966b1d7228b456', 20 20 'dev_requirement' => false, 21 21 ), -
simple-smtp/tags/1.2.1/wp-simple-smtp.php
r2597603 r2598776 11 11 * Description: Adds mail configuration to WordPress in a simple, standardised plugin. 12 12 * Plugin URI: https://www.soupbowl.io/wp-plugins 13 * Version: 1.2 13 * Version: 1.2.1 14 14 * Author: soup-bowl 15 15 * Author URI: https://www.soupbowl.io … … 63 63 'admin_enqueue_scripts', 64 64 function ( $page ) { 65 if ( 'settings_page_wpsimplesmtp' === $page ) {66 wp_enqueue_style( 'wpss_admin_css', plugin_dir_url( __FILE__ ) . 'assets/smtp-config.css', [], '1. 1' );65 if ( 'settings_page_wpsimplesmtp' === $page || 'settings_page_wpsimplesmtpms' === $page ) { 66 wp_enqueue_style( 'wpss_admin_css', plugin_dir_url( __FILE__ ) . 'assets/smtp-config.css', [], '1.2' ); 67 67 wp_enqueue_script( 'wpss_config', plugin_dir_url( __FILE__ ) . 'assets/smtp-config.js', [ 'jquery', 'wp-i18n' ], '1.3', true ); 68 68 wp_set_script_translations( 'wpss_config', 'simple-smtp' ); -
simple-smtp/trunk/assets/smtp-config.css
r2467283 r2598776 35 35 background-color: #dc3545; 36 36 } 37 38 .wpsmtp-multisite-table td { 39 line-height: 1.4em; 40 } 41 .wpsmtp-multisite-table td, 42 .wpsmtp-multisite-table th { 43 padding: 8px 10px; 44 } -
simple-smtp/trunk/readme.txt
r2597603 r2598776 5 5 Tested up to: 5.8 6 6 Requires PHP: 7.0 7 Stable tag: 1.2 7 Stable tag: 1.2.1 8 8 License: MIT 9 9 … … 73 73 74 74 == Changelog == 75 = 1.2.1 = 76 * Change: Multisite listing table improvements. Thanks to [Kebbet](https://github.com/kebbet) ([#50](https://github.com/soup-bowl/wp-simple-smtp/issues/50)). 77 * Fix: Line break issue when viewing emails in the site log. Thanks to [Kebbet](https://github.com/kebbet) [#47](https://github.com/soup-bowl/wp-simple-smtp/issues/47). 78 * Fix: Missed localisations in the multisite table. Thanks to [Kebbet](https://github.com/kebbet) [#45](https://github.com/soup-bowl/wp-simple-smtp/issues/45). 79 75 80 = 1.2 = 76 81 * New: Multisite settings for admin visibility and override settings ([#6](https://github.com/soup-bowl/wp-simple-smtp/issues/6)). -
simple-smtp/trunk/src/log/class-logtable.php
r2467283 r2598776 195 195 $resend = "<span class=\"view\"><a href=\"{$resend_url}\" aria-label=\"View\">{$resend_label}</a></span>"; 196 196 } else { 197 $resend = '<span class="view"> Resent</span>';197 $resend = '<span class="view">' . _x( 'Resent', 'Greyed out action link when an e-mail has been resent', 'simple-smtp' ) . '</span>'; 198 198 } 199 199 -
simple-smtp/trunk/src/settings/class-mailview.php
r2467283 r2598776 66 66 <h2 class="hndle"><?php echo esc_html( $log->get_subject() ); ?></h2> 67 67 <div class="inside"> 68 <?php echo wp_kses_post( $log->get_body() ); ?>68 <?php echo wp_kses_post( wpautop( $log->get_body() ) ); ?> 69 69 </div> 70 70 </div> -
simple-smtp/trunk/src/settings/class-multisite.php
r2597603 r2598776 78 78 $this->settings_field_generator( 'pass', __( 'Password', 'simple-smtp' ), 'password', '', '', true ); 79 79 $this->settings_field_generator( 'from', __( 'Force from', 'simple-smtp' ), 'email', '[email protected]', '', true ); 80 $this->settings_field_generator( 'fromname', __( 'Force from name', 'simple-smtp' ), 'text', 'WordPress System', '', true );80 $this->settings_field_generator( 'fromname', __( 'Force from name', 'simple-smtp' ), 'text', _x( 'WordPress System', 'Force from e-mail address', 'simple-smtp' ), '', true ); 81 81 $this->settings_field_generator_multiple( 'sec', __( 'Security', 'simple-smtp' ), $this->acceptable_security_types(), 'dropdown', '', '', true ); 82 82 $this->settings_field_generator( 'noverifyssl', __( 'Disable SSL Verification', 'simple-smtp' ), 'checkbox', '', __( 'Do not disable this unless you know what you\'re doing.', 'simple-smtp' ), true ); … … 89 89 function () { 90 90 $collection = []; 91 92 $sites = get_sites(); 91 $sites = get_sites(); 92 93 93 foreach ( $sites as $site ) { 94 $site_details = get_blog_details( array( 'blog_id' => $site->blog_id ) ); 95 $url = $site_details->siteurl; 96 $name = $site_details->blogname; 97 $string = \sprintf( 98 // translators: Tooltip to clarify to the user clicking the link will take them to the child SMTP settings. 99 _x( 'Go to settings for %s', 'Sub site name', 'simple-smtp' ), 100 $name 101 ); 94 102 $collection[] = [ 95 103 'id' => $site->blog_id, 96 'url' => $site->domain . $site->path, 97 'settings' => add_query_arg( [ 'page' => 'wpsimplesmtp' ], $site->domain . $site->path . 'wp-admin/options-general.php' ), 104 'url' => $url, 105 'string' => $string, 106 'name' => $name, 107 'settings' => add_query_arg( [ 'page' => 'wpsimplesmtp' ], get_admin_url( $site->blog_id ) . 'options-general.php' ), 98 108 'no_set' => get_network_option( $site->blog_id, 'wpssmtp_disable_settings', 0 ), 99 109 'no_log' => get_network_option( $site->blog_id, 'wpssmtp_disable_logging', 0 ), … … 102 112 103 113 ?> 104 <table class="wp-list-table widefat striped ">114 <table class="wp-list-table widefat striped wpsmtp-multisite-table"> 105 115 <thead> 106 116 <tr> 107 <th> Site</th>108 <th> Disable Settings</th>109 <th> Disable Logging</th>117 <th><?php esc_html_e( 'Site', 'simple-smtp' ); ?></th> 118 <th><?php esc_html_e( 'Disable Settings', 'simple-smtp' ); ?></th> 119 <th><?php esc_html_e( 'Disable Logging', 'simple-smtp' ); ?></th> 110 120 </tr> 111 121 </thead> … … 113 123 <?php foreach ( $collection as $site ) : ?> 114 124 <tr> 115 <td><a href="<?php echo esc_url( $site['settings'] ); ?>" ><?php echo esc_url( $site['url'] ); ?></a></td>125 <td><a href="<?php echo esc_url( $site['settings'] ); ?>" title="<?php echo esc_attr( $site['string'] ); ?>"><?php echo esc_attr( $site['name'] ); ?></a><br /><?php echo esc_url( $site['url'] ); ?></td> 116 126 <td><input type='checkbox' name='wpssmtp_perm_set_s<?php echo (int) $site['id']; ?>' <?php checked( $site['no_set'], 1 ); ?> value='1'></td> 117 127 <td><input type='checkbox' name='wpssmtp_perm_log_s<?php echo (int) $site['id']; ?>' <?php checked( $site['no_log'], 1 ); ?> value='1'></td> -
simple-smtp/trunk/src/settings/class-singular.php
r2597603 r2598776 148 148 $this->settings_field_generator( 'pass', __( 'Password', 'simple-smtp' ), 'password', '' ); 149 149 $this->settings_field_generator( 'from', __( 'Force from', 'simple-smtp' ), 'email', '[email protected]' ); 150 $this->settings_field_generator( 'fromname', __( 'Force from name', 'simple-smtp' ), 'text', 'WordPress System');150 $this->settings_field_generator( 'fromname', __( 'Force from name', 'simple-smtp' ), 'text', _x( 'WordPress System', 'Force from e-mail address', 'simple-smtp' ), '', true ); 151 151 $this->settings_field_generator_multiple( 'sec', __( 'Security', 'simple-smtp' ), $this->acceptable_security_types(), 'dropdown' ); 152 152 $this->settings_field_generator( 'noverifyssl', __( 'Disable SSL Verification', 'simple-smtp' ), 'checkbox', '', __( 'Do not disable this unless you know what you\'re doing.', 'simple-smtp' ) ); … … 174 174 ?> 175 175 <input class='regular-text ltr' type='text' name='wpssmtp_test_email_recipient' value='<?php echo esc_attr( wp_get_current_user()->user_email ); ?>'> 176 <p class='description'><?php esc_html_e( 'Sep erate multiple emails with a semi-colon (;).', 'simple-smtp' ); ?></p>176 <p class='description'><?php esc_html_e( 'Separate multiple emails with a semi-colon (;).', 'simple-smtp' ); ?></p> 177 177 <?php 178 178 }, -
simple-smtp/trunk/vendor/autoload.php
r2597603 r2598776 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit 06627139f41c8315a2db09775b77e8ca::getLoader();7 return ComposerAutoloaderInit1e1158311068496fe1690fa987e207fd::getLoader(); -
simple-smtp/trunk/vendor/composer/autoload_real.php
r2597603 r2598776 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 06627139f41c8315a2db09775b77e8ca5 class ComposerAutoloaderInit1e1158311068496fe1690fa987e207fd 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit 06627139f41c8315a2db09775b77e8ca', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInit1e1158311068496fe1690fa987e207fd', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); 27 spl_autoload_unregister(array('ComposerAutoloaderInit 06627139f41c8315a2db09775b77e8ca', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit1e1158311068496fe1690fa987e207fd', 'loadClassLoader')); 28 28 29 29 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 31 31 require __DIR__ . '/autoload_static.php'; 32 32 33 call_user_func(\Composer\Autoload\ComposerStaticInit 06627139f41c8315a2db09775b77e8ca::getInitializer($loader));33 call_user_func(\Composer\Autoload\ComposerStaticInit1e1158311068496fe1690fa987e207fd::getInitializer($loader)); 34 34 } else { 35 35 $map = require __DIR__ . '/autoload_namespaces.php'; -
simple-smtp/trunk/vendor/composer/autoload_static.php
r2597603 r2598776 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 06627139f41c8315a2db09775b77e8ca7 class ComposerStaticInit1e1158311068496fe1690fa987e207fd 8 8 { 9 9 public static $classMap = array ( … … 27 27 { 28 28 return \Closure::bind(function () use ($loader) { 29 $loader->classMap = ComposerStaticInit 06627139f41c8315a2db09775b77e8ca::$classMap;29 $loader->classMap = ComposerStaticInit1e1158311068496fe1690fa987e207fd::$classMap; 30 30 31 31 }, null, ClassLoader::class); -
simple-smtp/trunk/vendor/composer/installed.php
r2597603 r2598776 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => '1.2 ',4 'version' => '1.2. 0.0',3 'pretty_version' => '1.2.1', 4 'version' => '1.2.1.0', 5 5 'type' => 'library', 6 6 'install_path' => __DIR__ . '/../../', 7 7 'aliases' => array(), 8 'reference' => ' 9093cf0dbda09a8ec4c0a05dca3b71d9fc282e35',8 'reference' => '7352531bcbb2df4d0a59c7c7fa966b1d7228b456', 9 9 'name' => 'soup-bowl/wpsimplesmtp', 10 10 'dev' => false, … … 12 12 'versions' => array( 13 13 'soup-bowl/wpsimplesmtp' => array( 14 'pretty_version' => '1.2 ',15 'version' => '1.2. 0.0',14 'pretty_version' => '1.2.1', 15 'version' => '1.2.1.0', 16 16 'type' => 'library', 17 17 'install_path' => __DIR__ . '/../../', 18 18 'aliases' => array(), 19 'reference' => ' 9093cf0dbda09a8ec4c0a05dca3b71d9fc282e35',19 'reference' => '7352531bcbb2df4d0a59c7c7fa966b1d7228b456', 20 20 'dev_requirement' => false, 21 21 ), -
simple-smtp/trunk/wp-simple-smtp.php
r2597603 r2598776 11 11 * Description: Adds mail configuration to WordPress in a simple, standardised plugin. 12 12 * Plugin URI: https://www.soupbowl.io/wp-plugins 13 * Version: 1.2 13 * Version: 1.2.1 14 14 * Author: soup-bowl 15 15 * Author URI: https://www.soupbowl.io … … 63 63 'admin_enqueue_scripts', 64 64 function ( $page ) { 65 if ( 'settings_page_wpsimplesmtp' === $page ) {66 wp_enqueue_style( 'wpss_admin_css', plugin_dir_url( __FILE__ ) . 'assets/smtp-config.css', [], '1. 1' );65 if ( 'settings_page_wpsimplesmtp' === $page || 'settings_page_wpsimplesmtpms' === $page ) { 66 wp_enqueue_style( 'wpss_admin_css', plugin_dir_url( __FILE__ ) . 'assets/smtp-config.css', [], '1.2' ); 67 67 wp_enqueue_script( 'wpss_config', plugin_dir_url( __FILE__ ) . 'assets/smtp-config.js', [ 'jquery', 'wp-i18n' ], '1.3', true ); 68 68 wp_set_script_translations( 'wpss_config', 'simple-smtp' );
Note: See TracChangeset
for help on using the changeset viewer.