Plugin Directory

Changeset 3181183


Ignore:
Timestamp:
11/04/2024 09:24:50 AM (17 months ago)
Author:
EmailOctopus
Message:

Adding version 3.1.6.

Location:
emailoctopus
Files:
8 added
7 edited

Legend:

Unmodified
Added
Removed
  • emailoctopus/trunk/languages/emailoctopus.pot

    r3008744 r3181183  
    1 # Copyright (C) 2023 EmailOctopus
     1# Copyright (C) 2024 EmailOctopus
    22# This file is distributed under the GPL-2.0+.
    33msgid ""
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2023-12-12T12:27:50+00:00\n"
     12"POT-Creation-Date: 2024-11-01T12:50:24+00:00\n"
    1313"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"
    1515"X-Domain: emailoctopus\n"
    1616
    1717#. Plugin Name of the plugin
    1818#. Author of the plugin
     19#: emailoctopus.php
    1920#: src/Admin.php:153
    2021#: src/Admin.php:154
     
    2526#. Plugin URI of the plugin
    2627#. Author URI of the plugin
     28#: emailoctopus.php
    2729msgid "https://emailoctopus.com"
    2830msgstr ""
    2931
    3032#. Description of the plugin
     33#: emailoctopus.php
    3134msgid "Use this official plugin to display EmailOctopus subscription forms on your WordPress site."
    3235msgstr ""
     
    394397msgstr ""
    395398
     399#: public/build/block.js:1
    396400#: src/js/block-preview.js:50
    397401msgid "A server error occurred."
    398402msgstr ""
    399403
     404#: public/build/block.js:1
    400405#: src/js/block-preview.js:93
    401406msgid "EmailOctopus Form Preview"
    402407msgstr ""
    403408
     409#: public/build/json/block.json
    404410#: src/json/block.json
    405411msgctxt "block title"
     
    407413msgstr ""
    408414
     415#: public/build/json/block.json
    409416#: src/json/block.json
    410417msgctxt "block description"
     
    412419msgstr ""
    413420
     421#: public/build/json/block.json
    414422#: src/json/block.json
    415423msgctxt "block keyword"
     
    417425msgstr ""
    418426
     427#: public/build/json/block.json
    419428#: src/json/block.json
    420429msgctxt "block keyword"
     
    422431msgstr ""
    423432
     433#: public/build/json/block.json
    424434#: src/json/block.json
    425435msgctxt "block keyword"
  • emailoctopus/trunk/readme.txt

    r3118207 r3181183  
    44Tags: 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
    55Requires at least: 5.0
    6 Tested up to: 6.6
     6Tested up to: 6.7
    77Stable tag: 3.1.6
    88Requires PHP: 7.4
  • emailoctopus/trunk/vendor/autoload.php

    r3058425 r3181183  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInit34780c61f76a9aa01e723c0956930fcc::getLoader();
     25return ComposerAutoloaderInit752bde8a39316a6657e95aa588952dfb::getLoader();
  • emailoctopus/trunk/vendor/composer/ClassLoader.php

    r3058425 r3181183  
    4646    private static $includeFile;
    4747
    48     /** @var string|null */
     48    /** @var ?string */
    4949    private $vendorDir;
    5050
    5151    // PSR-4
    5252    /**
    53      * @var array<string, array<string, int>>
     53     * @var array[]
     54     * @psalm-var array<string, array<string, int>>
    5455     */
    5556    private $prefixLengthsPsr4 = array();
    5657    /**
    57      * @var array<string, list<string>>
     58     * @var array[]
     59     * @psalm-var array<string, array<int, string>>
    5860     */
    5961    private $prefixDirsPsr4 = array();
    6062    /**
    61      * @var list<string>
     63     * @var array[]
     64     * @psalm-var array<string, string>
    6265     */
    6366    private $fallbackDirsPsr4 = array();
     
    6568    // PSR-0
    6669    /**
    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[]>>
    7272     */
    7373    private $prefixesPsr0 = array();
    7474    /**
    75      * @var list<string>
     75     * @var array[]
     76     * @psalm-var array<string, string>
    7677     */
    7778    private $fallbackDirsPsr0 = array();
     
    8182
    8283    /**
    83      * @var array<string, string>
     84     * @var string[]
     85     * @psalm-var array<string, string>
    8486     */
    8587    private $classMap = array();
     
    8991
    9092    /**
    91      * @var array<string, bool>
     93     * @var bool[]
     94     * @psalm-var array<string, bool>
    9295     */
    9396    private $missingClasses = array();
    9497
    95     /** @var string|null */
     98    /** @var ?string */
    9699    private $apcuPrefix;
    97100
    98101    /**
    99      * @var array<string, self>
     102     * @var self[]
    100103     */
    101104    private static $registeredLoaders = array();
    102105
    103106    /**
    104      * @param string|null $vendorDir
     107     * @param ?string $vendorDir
    105108     */
    106109    public function __construct($vendorDir = null)
     
    111114
    112115    /**
    113      * @return array<string, list<string>>
     116     * @return string[]
    114117     */
    115118    public function getPrefixes()
     
    123126
    124127    /**
    125      * @return array<string, list<string>>
     128     * @return array[]
     129     * @psalm-return array<string, array<int, string>>
    126130     */
    127131    public function getPrefixesPsr4()
     
    131135
    132136    /**
    133      * @return list<string>
     137     * @return array[]
     138     * @psalm-return array<string, string>
    134139     */
    135140    public function getFallbackDirs()
     
    139144
    140145    /**
    141      * @return list<string>
     146     * @return array[]
     147     * @psalm-return array<string, string>
    142148     */
    143149    public function getFallbackDirsPsr4()
     
    147153
    148154    /**
    149      * @return array<string, string> Array of classname => path
     155     * @return string[] Array of classname => path
     156     * @psalm-return array<string, string>
    150157     */
    151158    public function getClassMap()
     
    155162
    156163    /**
    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
    158166     *
    159167     * @return void
     
    172180     * appending or prepending to the ones previously set for this prefix.
    173181     *
    174      * @param string              $prefix  The prefix
    175      * @param list<string>|string $paths   The PSR-0 root directories
    176      * @param bool                $prepend Whether to prepend the directories
     182     * @param string          $prefix  The prefix
     183     * @param string[]|string $paths   The PSR-0 root directories
     184     * @param bool            $prepend Whether to prepend the directories
    177185     *
    178186     * @return void
     
    180188    public function add($prefix, $paths, $prepend = false)
    181189    {
    182         $paths = (array) $paths;
    183190        if (!$prefix) {
    184191            if ($prepend) {
    185192                $this->fallbackDirsPsr0 = array_merge(
    186                     $paths,
     193                    (array) $paths,
    187194                    $this->fallbackDirsPsr0
    188195                );
     
    190197                $this->fallbackDirsPsr0 = array_merge(
    191198                    $this->fallbackDirsPsr0,
    192                     $paths
     199                    (array) $paths
    193200                );
    194201            }
     
    199206        $first = $prefix[0];
    200207        if (!isset($this->prefixesPsr0[$first][$prefix])) {
    201             $this->prefixesPsr0[$first][$prefix] = $paths;
     208            $this->prefixesPsr0[$first][$prefix] = (array) $paths;
    202209
    203210            return;
     
    205212        if ($prepend) {
    206213            $this->prefixesPsr0[$first][$prefix] = array_merge(
    207                 $paths,
     214                (array) $paths,
    208215                $this->prefixesPsr0[$first][$prefix]
    209216            );
     
    211218            $this->prefixesPsr0[$first][$prefix] = array_merge(
    212219                $this->prefixesPsr0[$first][$prefix],
    213                 $paths
     220                (array) $paths
    214221            );
    215222        }
     
    220227     * appending or prepending to the ones previously set for this namespace.
    221228     *
    222      * @param string              $prefix  The prefix/namespace, with trailing '\\'
    223      * @param list<string>|string $paths   The PSR-4 base directories
    224      * @param bool                $prepend Whether to prepend the directories
     229     * @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
    225232     *
    226233     * @throws \InvalidArgumentException
     
    230237    public function addPsr4($prefix, $paths, $prepend = false)
    231238    {
    232         $paths = (array) $paths;
    233239        if (!$prefix) {
    234240            // Register directories for the root namespace.
    235241            if ($prepend) {
    236242                $this->fallbackDirsPsr4 = array_merge(
    237                     $paths,
     243                    (array) $paths,
    238244                    $this->fallbackDirsPsr4
    239245                );
     
    241247                $this->fallbackDirsPsr4 = array_merge(
    242248                    $this->fallbackDirsPsr4,
    243                     $paths
     249                    (array) $paths
    244250                );
    245251            }
     
    251257            }
    252258            $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
    253             $this->prefixDirsPsr4[$prefix] = $paths;
     259            $this->prefixDirsPsr4[$prefix] = (array) $paths;
    254260        } elseif ($prepend) {
    255261            // Prepend directories for an already registered namespace.
    256262            $this->prefixDirsPsr4[$prefix] = array_merge(
    257                 $paths,
     263                (array) $paths,
    258264                $this->prefixDirsPsr4[$prefix]
    259265            );
     
    262268            $this->prefixDirsPsr4[$prefix] = array_merge(
    263269                $this->prefixDirsPsr4[$prefix],
    264                 $paths
     270                (array) $paths
    265271            );
    266272        }
     
    271277     * replacing any others previously set for this prefix.
    272278     *
    273      * @param string              $prefix The prefix
    274      * @param list<string>|string $paths  The PSR-0 base directories
     279     * @param string          $prefix The prefix
     280     * @param string[]|string $paths  The PSR-0 base directories
    275281     *
    276282     * @return void
     
    289295     * replacing any others previously set for this namespace.
    290296     *
    291      * @param string              $prefix The prefix/namespace, with trailing '\\'
    292      * @param list<string>|string $paths  The PSR-4 base directories
     297     * @param string          $prefix The prefix/namespace, with trailing '\\'
     298     * @param string[]|string $paths  The PSR-4 base directories
    293299     *
    294300     * @throws \InvalidArgumentException
     
    476482
    477483    /**
    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[]
    481487     */
    482488    public static function getRegisteredLoaders()
  • emailoctopus/trunk/vendor/composer/autoload_real.php

    r3058425 r3181183  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit34780c61f76a9aa01e723c0956930fcc
     5class ComposerAutoloaderInit752bde8a39316a6657e95aa588952dfb
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         spl_autoload_register(array('ComposerAutoloaderInit34780c61f76a9aa01e723c0956930fcc', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInit752bde8a39316a6657e95aa588952dfb', 'loadClassLoader'), true, true);
    2626        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    27         spl_autoload_unregister(array('ComposerAutoloaderInit34780c61f76a9aa01e723c0956930fcc', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInit752bde8a39316a6657e95aa588952dfb', 'loadClassLoader'));
    2828
    2929        require __DIR__ . '/autoload_static.php';
    30         call_user_func(\Composer\Autoload\ComposerStaticInit34780c61f76a9aa01e723c0956930fcc::getInitializer($loader));
     30        call_user_func(\Composer\Autoload\ComposerStaticInit752bde8a39316a6657e95aa588952dfb::getInitializer($loader));
    3131
    3232        $loader->setClassMapAuthoritative(true);
  • emailoctopus/trunk/vendor/composer/autoload_static.php

    r3058425 r3181183  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit34780c61f76a9aa01e723c0956930fcc
     7class ComposerStaticInit752bde8a39316a6657e95aa588952dfb
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    4040    {
    4141        return \Closure::bind(function () use ($loader) {
    42             $loader->prefixLengthsPsr4 = ComposerStaticInit34780c61f76a9aa01e723c0956930fcc::$prefixLengthsPsr4;
    43             $loader->prefixDirsPsr4 = ComposerStaticInit34780c61f76a9aa01e723c0956930fcc::$prefixDirsPsr4;
    44             $loader->classMap = ComposerStaticInit34780c61f76a9aa01e723c0956930fcc::$classMap;
     42            $loader->prefixLengthsPsr4 = ComposerStaticInit752bde8a39316a6657e95aa588952dfb::$prefixLengthsPsr4;
     43            $loader->prefixDirsPsr4 = ComposerStaticInit752bde8a39316a6657e95aa588952dfb::$prefixDirsPsr4;
     44            $loader->classMap = ComposerStaticInit752bde8a39316a6657e95aa588952dfb::$classMap;
    4545
    4646        }, null, ClassLoader::class);
  • emailoctopus/trunk/vendor/composer/installed.php

    r3118207 r3181183  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '866a479aa0380782fcf953d5f363d28101f20759',
     6        'reference' => '8204620579fdc6d78d3214de5fefc6855e1f9bab',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-main',
    1515            'version' => 'dev-main',
    16             'reference' => '866a479aa0380782fcf953d5f363d28101f20759',
     16            'reference' => '8204620579fdc6d78d3214de5fefc6855e1f9bab',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.