Changeset 3181183
- Timestamp:
- 11/04/2024 09:24:50 AM (17 months ago)
- Location:
- emailoctopus
- Files:
-
- 8 added
- 7 edited
-
assets/banner-1544x500.png (added)
-
assets/banner-772x250.png (added)
-
assets/icon-128x128.png (added)
-
assets/icon-256x256.png (added)
-
assets/icon.svg (added)
-
assets/screenshot-1.png (added)
-
assets/screenshot-2.png (added)
-
assets/screenshot-3.png (added)
-
trunk/languages/emailoctopus.pot (modified) (8 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/ClassLoader.php (modified) (24 diffs)
-
trunk/vendor/composer/autoload_real.php (modified) (2 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
emailoctopus/trunk/languages/emailoctopus.pot
r3008744 r3181183 1 # Copyright (C) 202 3EmailOctopus1 # Copyright (C) 2024 EmailOctopus 2 2 # This file is distributed under the GPL-2.0+. 3 3 msgid "" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 202 3-12-12T12:27:50+00:00\n"12 "POT-Creation-Date: 2024-11-01T12:50:24+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 "X-Generator: WP-CLI 2. 9.0\n"14 "X-Generator: WP-CLI 2.11.0\n" 15 15 "X-Domain: emailoctopus\n" 16 16 17 17 #. Plugin Name of the plugin 18 18 #. Author of the plugin 19 #: emailoctopus.php 19 20 #: src/Admin.php:153 20 21 #: src/Admin.php:154 … … 25 26 #. Plugin URI of the plugin 26 27 #. Author URI of the plugin 28 #: emailoctopus.php 27 29 msgid "https://emailoctopus.com" 28 30 msgstr "" 29 31 30 32 #. Description of the plugin 33 #: emailoctopus.php 31 34 msgid "Use this official plugin to display EmailOctopus subscription forms on your WordPress site." 32 35 msgstr "" … … 394 397 msgstr "" 395 398 399 #: public/build/block.js:1 396 400 #: src/js/block-preview.js:50 397 401 msgid "A server error occurred." 398 402 msgstr "" 399 403 404 #: public/build/block.js:1 400 405 #: src/js/block-preview.js:93 401 406 msgid "EmailOctopus Form Preview" 402 407 msgstr "" 403 408 409 #: public/build/json/block.json 404 410 #: src/json/block.json 405 411 msgctxt "block title" … … 407 413 msgstr "" 408 414 415 #: public/build/json/block.json 409 416 #: src/json/block.json 410 417 msgctxt "block description" … … 412 419 msgstr "" 413 420 421 #: public/build/json/block.json 414 422 #: src/json/block.json 415 423 msgctxt "block keyword" … … 417 425 msgstr "" 418 426 427 #: public/build/json/block.json 419 428 #: src/json/block.json 420 429 msgctxt "block keyword" … … 422 431 msgstr "" 423 432 433 #: public/build/json/block.json 424 434 #: src/json/block.json 425 435 msgctxt "block keyword" -
emailoctopus/trunk/readme.txt
r3118207 r3181183 4 4 Tags: email marketing, collect emails, emailoctopus, emailoctopus form, emailoctopus plugin, email, email octopus, email form, marketing, newsletter, signup form, subscribers, subscription, widget, email plugin, list builder, amazon ses 5 5 Requires at least: 5.0 6 Tested up to: 6. 66 Tested up to: 6.7 7 7 Stable tag: 3.1.6 8 8 Requires PHP: 7.4 -
emailoctopus/trunk/vendor/autoload.php
r3058425 r3181183 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 34780c61f76a9aa01e723c0956930fcc::getLoader();25 return ComposerAutoloaderInit752bde8a39316a6657e95aa588952dfb::getLoader(); -
emailoctopus/trunk/vendor/composer/ClassLoader.php
r3058425 r3181183 46 46 private static $includeFile; 47 47 48 /** @var string|null*/48 /** @var ?string */ 49 49 private $vendorDir; 50 50 51 51 // PSR-4 52 52 /** 53 * @var array<string, array<string, int>> 53 * @var array[] 54 * @psalm-var array<string, array<string, int>> 54 55 */ 55 56 private $prefixLengthsPsr4 = array(); 56 57 /** 57 * @var array<string, list<string>> 58 * @var array[] 59 * @psalm-var array<string, array<int, string>> 58 60 */ 59 61 private $prefixDirsPsr4 = array(); 60 62 /** 61 * @var list<string> 63 * @var array[] 64 * @psalm-var array<string, string> 62 65 */ 63 66 private $fallbackDirsPsr4 = array(); … … 65 68 // PSR-0 66 69 /** 67 * List of PSR-0 prefixes 68 * 69 * Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2'))) 70 * 71 * @var array<string, array<string, list<string>>> 70 * @var array[] 71 * @psalm-var array<string, array<string, string[]>> 72 72 */ 73 73 private $prefixesPsr0 = array(); 74 74 /** 75 * @var list<string> 75 * @var array[] 76 * @psalm-var array<string, string> 76 77 */ 77 78 private $fallbackDirsPsr0 = array(); … … 81 82 82 83 /** 83 * @var array<string, string> 84 * @var string[] 85 * @psalm-var array<string, string> 84 86 */ 85 87 private $classMap = array(); … … 89 91 90 92 /** 91 * @var array<string, bool> 93 * @var bool[] 94 * @psalm-var array<string, bool> 92 95 */ 93 96 private $missingClasses = array(); 94 97 95 /** @var string|null*/98 /** @var ?string */ 96 99 private $apcuPrefix; 97 100 98 101 /** 99 * @var array<string, self>102 * @var self[] 100 103 */ 101 104 private static $registeredLoaders = array(); 102 105 103 106 /** 104 * @param string|null$vendorDir107 * @param ?string $vendorDir 105 108 */ 106 109 public function __construct($vendorDir = null) … … 111 114 112 115 /** 113 * @return array<string, list<string>>116 * @return string[] 114 117 */ 115 118 public function getPrefixes() … … 123 126 124 127 /** 125 * @return array<string, list<string>> 128 * @return array[] 129 * @psalm-return array<string, array<int, string>> 126 130 */ 127 131 public function getPrefixesPsr4() … … 131 135 132 136 /** 133 * @return list<string> 137 * @return array[] 138 * @psalm-return array<string, string> 134 139 */ 135 140 public function getFallbackDirs() … … 139 144 140 145 /** 141 * @return list<string> 146 * @return array[] 147 * @psalm-return array<string, string> 142 148 */ 143 149 public function getFallbackDirsPsr4() … … 147 153 148 154 /** 149 * @return array<string, string> Array of classname => path 155 * @return string[] Array of classname => path 156 * @psalm-return array<string, string> 150 157 */ 151 158 public function getClassMap() … … 155 162 156 163 /** 157 * @param array<string, string> $classMap Class to filename map 164 * @param string[] $classMap Class to filename map 165 * @psalm-param array<string, string> $classMap 158 166 * 159 167 * @return void … … 172 180 * appending or prepending to the ones previously set for this prefix. 173 181 * 174 * @param string $prefix The prefix175 * @param list<string>|string $paths The PSR-0 root directories176 * @param bool $prepend Whether to prepend the directories182 * @param string $prefix The prefix 183 * @param string[]|string $paths The PSR-0 root directories 184 * @param bool $prepend Whether to prepend the directories 177 185 * 178 186 * @return void … … 180 188 public function add($prefix, $paths, $prepend = false) 181 189 { 182 $paths = (array) $paths;183 190 if (!$prefix) { 184 191 if ($prepend) { 185 192 $this->fallbackDirsPsr0 = array_merge( 186 $paths,193 (array) $paths, 187 194 $this->fallbackDirsPsr0 188 195 ); … … 190 197 $this->fallbackDirsPsr0 = array_merge( 191 198 $this->fallbackDirsPsr0, 192 $paths199 (array) $paths 193 200 ); 194 201 } … … 199 206 $first = $prefix[0]; 200 207 if (!isset($this->prefixesPsr0[$first][$prefix])) { 201 $this->prefixesPsr0[$first][$prefix] = $paths;208 $this->prefixesPsr0[$first][$prefix] = (array) $paths; 202 209 203 210 return; … … 205 212 if ($prepend) { 206 213 $this->prefixesPsr0[$first][$prefix] = array_merge( 207 $paths,214 (array) $paths, 208 215 $this->prefixesPsr0[$first][$prefix] 209 216 ); … … 211 218 $this->prefixesPsr0[$first][$prefix] = array_merge( 212 219 $this->prefixesPsr0[$first][$prefix], 213 $paths220 (array) $paths 214 221 ); 215 222 } … … 220 227 * appending or prepending to the ones previously set for this namespace. 221 228 * 222 * @param string $prefix The prefix/namespace, with trailing '\\'223 * @param list<string>|string $paths The PSR-4 base directories224 * @param bool $prepend Whether to prepend the directories229 * @param string $prefix The prefix/namespace, with trailing '\\' 230 * @param string[]|string $paths The PSR-4 base directories 231 * @param bool $prepend Whether to prepend the directories 225 232 * 226 233 * @throws \InvalidArgumentException … … 230 237 public function addPsr4($prefix, $paths, $prepend = false) 231 238 { 232 $paths = (array) $paths;233 239 if (!$prefix) { 234 240 // Register directories for the root namespace. 235 241 if ($prepend) { 236 242 $this->fallbackDirsPsr4 = array_merge( 237 $paths,243 (array) $paths, 238 244 $this->fallbackDirsPsr4 239 245 ); … … 241 247 $this->fallbackDirsPsr4 = array_merge( 242 248 $this->fallbackDirsPsr4, 243 $paths249 (array) $paths 244 250 ); 245 251 } … … 251 257 } 252 258 $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; 253 $this->prefixDirsPsr4[$prefix] = $paths;259 $this->prefixDirsPsr4[$prefix] = (array) $paths; 254 260 } elseif ($prepend) { 255 261 // Prepend directories for an already registered namespace. 256 262 $this->prefixDirsPsr4[$prefix] = array_merge( 257 $paths,263 (array) $paths, 258 264 $this->prefixDirsPsr4[$prefix] 259 265 ); … … 262 268 $this->prefixDirsPsr4[$prefix] = array_merge( 263 269 $this->prefixDirsPsr4[$prefix], 264 $paths270 (array) $paths 265 271 ); 266 272 } … … 271 277 * replacing any others previously set for this prefix. 272 278 * 273 * @param string $prefix The prefix274 * @param list<string>|string $paths The PSR-0 base directories279 * @param string $prefix The prefix 280 * @param string[]|string $paths The PSR-0 base directories 275 281 * 276 282 * @return void … … 289 295 * replacing any others previously set for this namespace. 290 296 * 291 * @param string $prefix The prefix/namespace, with trailing '\\'292 * @param list<string>|string $paths The PSR-4 base directories297 * @param string $prefix The prefix/namespace, with trailing '\\' 298 * @param string[]|string $paths The PSR-4 base directories 293 299 * 294 300 * @throws \InvalidArgumentException … … 476 482 477 483 /** 478 * Returns the currently registered loaders keyed by their corresponding vendor directories.479 * 480 * @return array<string, self>484 * Returns the currently registered loaders indexed by their corresponding vendor directories. 485 * 486 * @return self[] 481 487 */ 482 488 public static function getRegisteredLoaders() -
emailoctopus/trunk/vendor/composer/autoload_real.php
r3058425 r3181183 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 34780c61f76a9aa01e723c0956930fcc5 class ComposerAutoloaderInit752bde8a39316a6657e95aa588952dfb 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit 34780c61f76a9aa01e723c0956930fcc', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInit752bde8a39316a6657e95aa588952dfb', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit 34780c61f76a9aa01e723c0956930fcc', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit752bde8a39316a6657e95aa588952dfb', 'loadClassLoader')); 28 28 29 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit 34780c61f76a9aa01e723c0956930fcc::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInit752bde8a39316a6657e95aa588952dfb::getInitializer($loader)); 31 31 32 32 $loader->setClassMapAuthoritative(true); -
emailoctopus/trunk/vendor/composer/autoload_static.php
r3058425 r3181183 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 34780c61f76a9aa01e723c0956930fcc7 class ComposerStaticInit752bde8a39316a6657e95aa588952dfb 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 40 40 { 41 41 return \Closure::bind(function () use ($loader) { 42 $loader->prefixLengthsPsr4 = ComposerStaticInit 34780c61f76a9aa01e723c0956930fcc::$prefixLengthsPsr4;43 $loader->prefixDirsPsr4 = ComposerStaticInit 34780c61f76a9aa01e723c0956930fcc::$prefixDirsPsr4;44 $loader->classMap = ComposerStaticInit 34780c61f76a9aa01e723c0956930fcc::$classMap;42 $loader->prefixLengthsPsr4 = ComposerStaticInit752bde8a39316a6657e95aa588952dfb::$prefixLengthsPsr4; 43 $loader->prefixDirsPsr4 = ComposerStaticInit752bde8a39316a6657e95aa588952dfb::$prefixDirsPsr4; 44 $loader->classMap = ComposerStaticInit752bde8a39316a6657e95aa588952dfb::$classMap; 45 45 46 46 }, null, ClassLoader::class); -
emailoctopus/trunk/vendor/composer/installed.php
r3118207 r3181183 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => '8 66a479aa0380782fcf953d5f363d28101f20759',6 'reference' => '8204620579fdc6d78d3214de5fefc6855e1f9bab', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-main', 15 15 'version' => 'dev-main', 16 'reference' => '8 66a479aa0380782fcf953d5f363d28101f20759',16 'reference' => '8204620579fdc6d78d3214de5fefc6855e1f9bab', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.