Changeset 2665450
- Timestamp:
- 01/26/2022 07:42:05 AM (4 years ago)
- Location:
- juvo-mail-editor
- Files:
-
- 20 edited
- 1 copied
-
tags/3.0.3 (copied) (copied from juvo-mail-editor/trunk)
-
tags/3.0.3/juvo-mail-editor.php (modified) (1 diff)
-
tags/3.0.3/readme.txt (modified) (1 diff)
-
tags/3.0.3/src/Loader.php (modified) (3 diffs)
-
tags/3.0.3/src/Mails/Generic.php (modified) (3 diffs)
-
tags/3.0.3/src/Relay.php (modified) (9 diffs)
-
tags/3.0.3/vendor/autoload.php (modified) (1 diff)
-
tags/3.0.3/vendor/composer/ClassLoader.php (modified) (1 diff)
-
tags/3.0.3/vendor/composer/autoload_real.php (modified) (5 diffs)
-
tags/3.0.3/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/3.0.3/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/juvo-mail-editor.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/src/Loader.php (modified) (3 diffs)
-
trunk/src/Mails/Generic.php (modified) (3 diffs)
-
trunk/src/Relay.php (modified) (9 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/ClassLoader.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (5 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
juvo-mail-editor/tags/3.0.3/juvo-mail-editor.php
r2655718 r2665450 8 8 * Text Domain: juvo-mail-editor 9 9 * Domain Path: /languages 10 * Version: 3.0. 210 * Version: 3.0.3 11 11 */ 12 12 -
juvo-mail-editor/tags/3.0.3/readme.txt
r2655718 r2665450 3 3 Tags: mail,editor,framework 4 4 License: GPLv2 or later 5 Tested up to: 5. 86 Stable tag: 3.0. 25 Tested up to: 5.9 6 Stable tag: 3.0.3 7 7 8 8 JUVO Mail Editor helps to modify the standard WordPress Mailings and allows adding dynamic mail triggers. -
juvo-mail-editor/tags/3.0.3/src/Loader.php
r2644151 r2665450 20 20 * @var array $actions The actions registered with WordPress to fire when the plugin loads. 21 21 */ 22 protected array$actions;22 protected $actions; 23 23 24 24 /** … … 29 29 * @var array $filters The filters registered with WordPress to fire when the plugin loads. 30 30 */ 31 protected array$filters;31 protected $filters; 32 32 33 33 /** … … 38 38 * @var array $shortcodes The shortcodes registered with WordPress to load when the plugin loads. 39 39 */ 40 protected array$shortcodes;40 protected $shortcodes; 41 41 42 42 /** -
juvo-mail-editor/tags/3.0.3/src/Mails/Generic.php
r2644151 r2665450 9 9 private $content = ''; 10 10 private $recipients; 11 private $headers; 11 12 12 13 /** … … 17 18 * @param string $recipients 18 19 */ 19 public function __construct( string $subject, string $content, string $recipients ) {20 public function __construct( string $subject, string $content, string $recipients, array $headers ) { 20 21 $this->subject = $subject; 21 22 $this->content = $content; 22 23 $this->recipients = $recipients; 24 $this->headers = $headers; 23 25 } 24 26 … … 27 29 */ 28 30 public function send() { 29 return wp_mail( $this->recipients, $this->subject, $this->content );31 return wp_mail( $this->recipients, $this->subject, $this->content, $this->headers ); 30 32 } 31 33 } -
juvo-mail-editor/tags/3.0.3/src/Relay.php
r2655718 r2665450 130 130 $subject = $relay->prepareSubject( $post ); 131 131 132 // Headers 133 $headers = $relay->prepareHeaders( $post ); 134 132 135 // Restore language context 133 136 if ( $switched_locale ) { … … 135 138 } 136 139 137 $mail = new Generic( $subject, $content, $recipients );140 $mail = new Generic( $subject, $content, $recipients, $headers ); 138 141 $mail->send(); 139 142 … … 143 146 144 147 // Some triggers might only send mails if a post is associated 145 $alwaysSent = apply_filters( "juvo_mail_editor_{$trigger}_always_sent", false );148 $alwaysSent = apply_filters( "juvo_mail_editor_{$trigger}_always_sent", false, $relay->context ); 146 149 if ( ! $alwaysSent ) { 147 150 return false; … … 156 159 $subject = $relay->prepareSubject(); 157 160 $recipients = $relay->prepareRecipients(); 161 $headers = $relay->prepareHeaders(); 158 162 159 163 if ( $switched_locale ) { … … 161 165 } 162 166 163 $mail = new Generic( $subject, $content, $recipients );167 $mail = new Generic( $subject, $content, $recipients, $headers ); 164 168 $mail->send(); 165 169 … … 196 200 // phpcs:ignore Squiz.PHP.DisallowMultipleAssignments.FoundInControlStructure 197 201 if ( ! $post || ! $recipients = get_post_meta( $post->ID, Mails_PT::POST_TYPE_NAME . '_recipients', true ) ) { 198 $recipients = apply_filters( "juvo_mail_editor_{$this->trigger}_default_recipients", '' );202 $recipients = apply_filters( "juvo_mail_editor_{$this->trigger}_default_recipients", '', $this->context ); 199 203 } 200 204 … … 214 218 // phpcs:ignore Squiz.PHP.DisallowMultipleAssignments.FoundInControlStructure 215 219 if ( ! $post || ! $content = get_the_content( null, false, $post ) ) { 216 $content = apply_filters( "juvo_mail_editor_{$this->trigger}_message", '' );220 $content = apply_filters( "juvo_mail_editor_{$this->trigger}_message", '', $this->context ); 217 221 } else { 218 222 $blocks = parse_blocks( $content ); … … 258 262 // phpcs:ignore Squiz.PHP.DisallowMultipleAssignments.FoundInControlStructure 259 263 if ( ! $post || ! $subject = get_post_meta( $post->ID, Mails_PT::POST_TYPE_NAME . '_subject', true ) ) { 260 $subject = apply_filters( "juvo_mail_editor_{$this->trigger}_subject", '' );264 $subject = apply_filters( "juvo_mail_editor_{$this->trigger}_subject", '', $this->context ); 261 265 } 262 266 … … 288 292 } 289 293 294 /** 295 * Sets custom headers. 296 * By defaults adds headers to identify mail-editor mails through wordpress 297 * 298 * @param WP_Post|null $post 299 * 300 * @return mixed|void 301 */ 302 private function prepareHeaders( WP_Post $post = null ) { 303 304 $headers[] = "X-JUVO-ME-Trigger: {$this->trigger}"; 305 306 if ( $post ) { 307 $headers[] = "X-JUVO-ME-PostID: {$post->ID}"; 308 } 309 310 return apply_filters( "juvo_mail_editor_{$this->trigger}_headers", $headers, $this->trigger, $this->context ); 311 } 312 290 313 } -
juvo-mail-editor/tags/3.0.3/vendor/autoload.php
r2655718 r2665450 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit ea9602c371634370be8f852af5c4b8cd::getLoader();7 return ComposerAutoloaderInitda989b60acc99e92106db987efcb0974::getLoader(); -
juvo-mail-editor/tags/3.0.3/vendor/composer/ClassLoader.php
r2620435 r2665450 150 150 /** 151 151 * @return string[] Array of classname => path 152 * @psalm- vararray<string, string>152 * @psalm-return array<string, string> 153 153 */ 154 154 public function getClassMap() -
juvo-mail-editor/tags/3.0.3/vendor/composer/autoload_real.php
r2655718 r2665450 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit ea9602c371634370be8f852af5c4b8cd5 class ComposerAutoloaderInitda989b60acc99e92106db987efcb0974 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit ea9602c371634370be8f852af5c4b8cd', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInitda989b60acc99e92106db987efcb0974', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); 27 spl_autoload_unregister(array('ComposerAutoloaderInit ea9602c371634370be8f852af5c4b8cd', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInitda989b60acc99e92106db987efcb0974', '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 ea9602c371634370be8f852af5c4b8cd::getInitializer($loader));33 call_user_func(\Composer\Autoload\ComposerStaticInitda989b60acc99e92106db987efcb0974::getInitializer($loader)); 34 34 } else { 35 35 $map = require __DIR__ . '/autoload_namespaces.php'; … … 52 52 53 53 if ($useStaticLoader) { 54 $includeFiles = Composer\Autoload\ComposerStaticInit ea9602c371634370be8f852af5c4b8cd::$files;54 $includeFiles = Composer\Autoload\ComposerStaticInitda989b60acc99e92106db987efcb0974::$files; 55 55 } else { 56 56 $includeFiles = require __DIR__ . '/autoload_files.php'; 57 57 } 58 58 foreach ($includeFiles as $fileIdentifier => $file) { 59 composerRequire ea9602c371634370be8f852af5c4b8cd($fileIdentifier, $file);59 composerRequireda989b60acc99e92106db987efcb0974($fileIdentifier, $file); 60 60 } 61 61 … … 64 64 } 65 65 66 function composerRequireea9602c371634370be8f852af5c4b8cd($fileIdentifier, $file) 66 /** 67 * @param string $fileIdentifier 68 * @param string $file 69 * @return void 70 */ 71 function composerRequireda989b60acc99e92106db987efcb0974($fileIdentifier, $file) 67 72 { 68 73 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { 74 $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; 75 69 76 require $file; 70 71 $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;72 77 } 73 78 } -
juvo-mail-editor/tags/3.0.3/vendor/composer/autoload_static.php
r2655718 r2665450 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit ea9602c371634370be8f852af5c4b8cd7 class ComposerStaticInitda989b60acc99e92106db987efcb0974 8 8 { 9 9 public static $files = array ( … … 94 94 { 95 95 return \Closure::bind(function () use ($loader) { 96 $loader->prefixLengthsPsr4 = ComposerStaticInit ea9602c371634370be8f852af5c4b8cd::$prefixLengthsPsr4;97 $loader->prefixDirsPsr4 = ComposerStaticInit ea9602c371634370be8f852af5c4b8cd::$prefixDirsPsr4;98 $loader->fallbackDirsPsr4 = ComposerStaticInit ea9602c371634370be8f852af5c4b8cd::$fallbackDirsPsr4;99 $loader->prefixesPsr0 = ComposerStaticInit ea9602c371634370be8f852af5c4b8cd::$prefixesPsr0;100 $loader->classMap = ComposerStaticInit ea9602c371634370be8f852af5c4b8cd::$classMap;96 $loader->prefixLengthsPsr4 = ComposerStaticInitda989b60acc99e92106db987efcb0974::$prefixLengthsPsr4; 97 $loader->prefixDirsPsr4 = ComposerStaticInitda989b60acc99e92106db987efcb0974::$prefixDirsPsr4; 98 $loader->fallbackDirsPsr4 = ComposerStaticInitda989b60acc99e92106db987efcb0974::$fallbackDirsPsr4; 99 $loader->prefixesPsr0 = ComposerStaticInitda989b60acc99e92106db987efcb0974::$prefixesPsr0; 100 $loader->classMap = ComposerStaticInitda989b60acc99e92106db987efcb0974::$classMap; 101 101 102 102 }, null, ClassLoader::class); -
juvo-mail-editor/tags/3.0.3/vendor/composer/installed.php
r2655718 r2665450 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => '3.0. 2',4 'version' => '3.0. 2.0',3 'pretty_version' => '3.0.3', 4 'version' => '3.0.3.0', 5 5 'type' => 'wordpress-plugin', 6 6 'install_path' => __DIR__ . '/../../', 7 7 'aliases' => array(), 8 'reference' => ' 6fd4fbd2bc7de6e147bda5e1da988cae07a8694f',8 'reference' => 'fb797b8232f53929f3944a4d1236e42528bd1165', 9 9 'name' => 'juvo/mail-editor', 10 10 'dev' => false, … … 39 39 ), 40 40 'juvo/mail-editor' => array( 41 'pretty_version' => '3.0. 2',42 'version' => '3.0. 2.0',41 'pretty_version' => '3.0.3', 42 'version' => '3.0.3.0', 43 43 'type' => 'wordpress-plugin', 44 44 'install_path' => __DIR__ . '/../../', 45 45 'aliases' => array(), 46 'reference' => ' 6fd4fbd2bc7de6e147bda5e1da988cae07a8694f',46 'reference' => 'fb797b8232f53929f3944a4d1236e42528bd1165', 47 47 'dev_requirement' => false, 48 48 ), -
juvo-mail-editor/trunk/juvo-mail-editor.php
r2655718 r2665450 8 8 * Text Domain: juvo-mail-editor 9 9 * Domain Path: /languages 10 * Version: 3.0. 210 * Version: 3.0.3 11 11 */ 12 12 -
juvo-mail-editor/trunk/readme.txt
r2655718 r2665450 3 3 Tags: mail,editor,framework 4 4 License: GPLv2 or later 5 Tested up to: 5. 86 Stable tag: 3.0. 25 Tested up to: 5.9 6 Stable tag: 3.0.3 7 7 8 8 JUVO Mail Editor helps to modify the standard WordPress Mailings and allows adding dynamic mail triggers. -
juvo-mail-editor/trunk/src/Loader.php
r2644151 r2665450 20 20 * @var array $actions The actions registered with WordPress to fire when the plugin loads. 21 21 */ 22 protected array$actions;22 protected $actions; 23 23 24 24 /** … … 29 29 * @var array $filters The filters registered with WordPress to fire when the plugin loads. 30 30 */ 31 protected array$filters;31 protected $filters; 32 32 33 33 /** … … 38 38 * @var array $shortcodes The shortcodes registered with WordPress to load when the plugin loads. 39 39 */ 40 protected array$shortcodes;40 protected $shortcodes; 41 41 42 42 /** -
juvo-mail-editor/trunk/src/Mails/Generic.php
r2644151 r2665450 9 9 private $content = ''; 10 10 private $recipients; 11 private $headers; 11 12 12 13 /** … … 17 18 * @param string $recipients 18 19 */ 19 public function __construct( string $subject, string $content, string $recipients ) {20 public function __construct( string $subject, string $content, string $recipients, array $headers ) { 20 21 $this->subject = $subject; 21 22 $this->content = $content; 22 23 $this->recipients = $recipients; 24 $this->headers = $headers; 23 25 } 24 26 … … 27 29 */ 28 30 public function send() { 29 return wp_mail( $this->recipients, $this->subject, $this->content );31 return wp_mail( $this->recipients, $this->subject, $this->content, $this->headers ); 30 32 } 31 33 } -
juvo-mail-editor/trunk/src/Relay.php
r2655718 r2665450 130 130 $subject = $relay->prepareSubject( $post ); 131 131 132 // Headers 133 $headers = $relay->prepareHeaders( $post ); 134 132 135 // Restore language context 133 136 if ( $switched_locale ) { … … 135 138 } 136 139 137 $mail = new Generic( $subject, $content, $recipients );140 $mail = new Generic( $subject, $content, $recipients, $headers ); 138 141 $mail->send(); 139 142 … … 143 146 144 147 // Some triggers might only send mails if a post is associated 145 $alwaysSent = apply_filters( "juvo_mail_editor_{$trigger}_always_sent", false );148 $alwaysSent = apply_filters( "juvo_mail_editor_{$trigger}_always_sent", false, $relay->context ); 146 149 if ( ! $alwaysSent ) { 147 150 return false; … … 156 159 $subject = $relay->prepareSubject(); 157 160 $recipients = $relay->prepareRecipients(); 161 $headers = $relay->prepareHeaders(); 158 162 159 163 if ( $switched_locale ) { … … 161 165 } 162 166 163 $mail = new Generic( $subject, $content, $recipients );167 $mail = new Generic( $subject, $content, $recipients, $headers ); 164 168 $mail->send(); 165 169 … … 196 200 // phpcs:ignore Squiz.PHP.DisallowMultipleAssignments.FoundInControlStructure 197 201 if ( ! $post || ! $recipients = get_post_meta( $post->ID, Mails_PT::POST_TYPE_NAME . '_recipients', true ) ) { 198 $recipients = apply_filters( "juvo_mail_editor_{$this->trigger}_default_recipients", '' );202 $recipients = apply_filters( "juvo_mail_editor_{$this->trigger}_default_recipients", '', $this->context ); 199 203 } 200 204 … … 214 218 // phpcs:ignore Squiz.PHP.DisallowMultipleAssignments.FoundInControlStructure 215 219 if ( ! $post || ! $content = get_the_content( null, false, $post ) ) { 216 $content = apply_filters( "juvo_mail_editor_{$this->trigger}_message", '' );220 $content = apply_filters( "juvo_mail_editor_{$this->trigger}_message", '', $this->context ); 217 221 } else { 218 222 $blocks = parse_blocks( $content ); … … 258 262 // phpcs:ignore Squiz.PHP.DisallowMultipleAssignments.FoundInControlStructure 259 263 if ( ! $post || ! $subject = get_post_meta( $post->ID, Mails_PT::POST_TYPE_NAME . '_subject', true ) ) { 260 $subject = apply_filters( "juvo_mail_editor_{$this->trigger}_subject", '' );264 $subject = apply_filters( "juvo_mail_editor_{$this->trigger}_subject", '', $this->context ); 261 265 } 262 266 … … 288 292 } 289 293 294 /** 295 * Sets custom headers. 296 * By defaults adds headers to identify mail-editor mails through wordpress 297 * 298 * @param WP_Post|null $post 299 * 300 * @return mixed|void 301 */ 302 private function prepareHeaders( WP_Post $post = null ) { 303 304 $headers[] = "X-JUVO-ME-Trigger: {$this->trigger}"; 305 306 if ( $post ) { 307 $headers[] = "X-JUVO-ME-PostID: {$post->ID}"; 308 } 309 310 return apply_filters( "juvo_mail_editor_{$this->trigger}_headers", $headers, $this->trigger, $this->context ); 311 } 312 290 313 } -
juvo-mail-editor/trunk/vendor/autoload.php
r2655718 r2665450 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit ea9602c371634370be8f852af5c4b8cd::getLoader();7 return ComposerAutoloaderInitda989b60acc99e92106db987efcb0974::getLoader(); -
juvo-mail-editor/trunk/vendor/composer/ClassLoader.php
r2620435 r2665450 150 150 /** 151 151 * @return string[] Array of classname => path 152 * @psalm- vararray<string, string>152 * @psalm-return array<string, string> 153 153 */ 154 154 public function getClassMap() -
juvo-mail-editor/trunk/vendor/composer/autoload_real.php
r2655718 r2665450 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit ea9602c371634370be8f852af5c4b8cd5 class ComposerAutoloaderInitda989b60acc99e92106db987efcb0974 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit ea9602c371634370be8f852af5c4b8cd', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInitda989b60acc99e92106db987efcb0974', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); 27 spl_autoload_unregister(array('ComposerAutoloaderInit ea9602c371634370be8f852af5c4b8cd', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInitda989b60acc99e92106db987efcb0974', '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 ea9602c371634370be8f852af5c4b8cd::getInitializer($loader));33 call_user_func(\Composer\Autoload\ComposerStaticInitda989b60acc99e92106db987efcb0974::getInitializer($loader)); 34 34 } else { 35 35 $map = require __DIR__ . '/autoload_namespaces.php'; … … 52 52 53 53 if ($useStaticLoader) { 54 $includeFiles = Composer\Autoload\ComposerStaticInit ea9602c371634370be8f852af5c4b8cd::$files;54 $includeFiles = Composer\Autoload\ComposerStaticInitda989b60acc99e92106db987efcb0974::$files; 55 55 } else { 56 56 $includeFiles = require __DIR__ . '/autoload_files.php'; 57 57 } 58 58 foreach ($includeFiles as $fileIdentifier => $file) { 59 composerRequire ea9602c371634370be8f852af5c4b8cd($fileIdentifier, $file);59 composerRequireda989b60acc99e92106db987efcb0974($fileIdentifier, $file); 60 60 } 61 61 … … 64 64 } 65 65 66 function composerRequireea9602c371634370be8f852af5c4b8cd($fileIdentifier, $file) 66 /** 67 * @param string $fileIdentifier 68 * @param string $file 69 * @return void 70 */ 71 function composerRequireda989b60acc99e92106db987efcb0974($fileIdentifier, $file) 67 72 { 68 73 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { 74 $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; 75 69 76 require $file; 70 71 $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;72 77 } 73 78 } -
juvo-mail-editor/trunk/vendor/composer/autoload_static.php
r2655718 r2665450 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit ea9602c371634370be8f852af5c4b8cd7 class ComposerStaticInitda989b60acc99e92106db987efcb0974 8 8 { 9 9 public static $files = array ( … … 94 94 { 95 95 return \Closure::bind(function () use ($loader) { 96 $loader->prefixLengthsPsr4 = ComposerStaticInit ea9602c371634370be8f852af5c4b8cd::$prefixLengthsPsr4;97 $loader->prefixDirsPsr4 = ComposerStaticInit ea9602c371634370be8f852af5c4b8cd::$prefixDirsPsr4;98 $loader->fallbackDirsPsr4 = ComposerStaticInit ea9602c371634370be8f852af5c4b8cd::$fallbackDirsPsr4;99 $loader->prefixesPsr0 = ComposerStaticInit ea9602c371634370be8f852af5c4b8cd::$prefixesPsr0;100 $loader->classMap = ComposerStaticInit ea9602c371634370be8f852af5c4b8cd::$classMap;96 $loader->prefixLengthsPsr4 = ComposerStaticInitda989b60acc99e92106db987efcb0974::$prefixLengthsPsr4; 97 $loader->prefixDirsPsr4 = ComposerStaticInitda989b60acc99e92106db987efcb0974::$prefixDirsPsr4; 98 $loader->fallbackDirsPsr4 = ComposerStaticInitda989b60acc99e92106db987efcb0974::$fallbackDirsPsr4; 99 $loader->prefixesPsr0 = ComposerStaticInitda989b60acc99e92106db987efcb0974::$prefixesPsr0; 100 $loader->classMap = ComposerStaticInitda989b60acc99e92106db987efcb0974::$classMap; 101 101 102 102 }, null, ClassLoader::class); -
juvo-mail-editor/trunk/vendor/composer/installed.php
r2655718 r2665450 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => '3.0. 2',4 'version' => '3.0. 2.0',3 'pretty_version' => '3.0.3', 4 'version' => '3.0.3.0', 5 5 'type' => 'wordpress-plugin', 6 6 'install_path' => __DIR__ . '/../../', 7 7 'aliases' => array(), 8 'reference' => ' 6fd4fbd2bc7de6e147bda5e1da988cae07a8694f',8 'reference' => 'fb797b8232f53929f3944a4d1236e42528bd1165', 9 9 'name' => 'juvo/mail-editor', 10 10 'dev' => false, … … 39 39 ), 40 40 'juvo/mail-editor' => array( 41 'pretty_version' => '3.0. 2',42 'version' => '3.0. 2.0',41 'pretty_version' => '3.0.3', 42 'version' => '3.0.3.0', 43 43 'type' => 'wordpress-plugin', 44 44 'install_path' => __DIR__ . '/../../', 45 45 'aliases' => array(), 46 'reference' => ' 6fd4fbd2bc7de6e147bda5e1da988cae07a8694f',46 'reference' => 'fb797b8232f53929f3944a4d1236e42528bd1165', 47 47 'dev_requirement' => false, 48 48 ),
Note: See TracChangeset
for help on using the changeset viewer.