Plugin Directory

Changeset 3036730


Ignore:
Timestamp:
02/16/2024 08:47:06 AM (2 years ago)
Author:
mailup
Message:

release v. 1.2.6 code and note version

Location:
mailup-email-and-newsletter-subscription-form
Files:
199 added
26 edited

Legend:

Unmodified
Added
Removed
  • mailup-email-and-newsletter-subscription-form/trunk/README.txt

    r3003871 r3036730  
    33Tags: email marketing, e-mail marketing, newsletter sending, newsletter marketing, email signup, e-mail sign-up, subscription form, subscribe form, registration form, sms signup, newsletter, email, smtp, bulk, sms, send, list, subscribe, form, marketing, widget, plugin, feedburner, subscription, email newsletter form, email widget, emails, newsletter form, newsletter plugin, newsletter signup, newsletter widget, newsletters, signup, iscrizione, mailup
    44Requires at least: 5.7.2
    5 Tested up to: 6.4.1
     5Tested up to: 6.4.3
    66Requires PHP: 7.2
    7 Stable tag: 1.2.5
     7Stable tag: 1.2.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    148148== Changelog ==
    149149
     150= 1.2.6 =
     151* [ITA]
     152    - Risolto un problema che interessava un account con più elenchi che non consentiva la selezione di liste diverse
     153    - Modificati Numero Campi Anagrafica (Max. 39)
     154* [ENG]
     155    - _Fixed an issue affecting a multi-list account that did not allow selection of different lists_
     156    - _Changed Number of Personal Data Fields (Max. 39)_
     157
    150158= 1.2.5 =
    151159* [ITA]
     
    189197
    190198== Upgrade Notice ==
     199
     200= 1.2.6 =
     201* [ITA]
     202    - Risolto un problema che interessava un account con più elenchi che non consentiva la selezione di liste diverse
     203    - Modificati Numero Campi Anagrafica (Max. 39)
     204* [ENG]
     205    - _Fixed an issue affecting a multi-list account that did not allow selection of different lists_
     206    - _Changed Number of Personal Data Fields (Max. 39)_
    191207
    192208= 1.2.5 =
  • mailup-email-and-newsletter-subscription-form/trunk/admin/class-mailup-admin.php

    r3003864 r3036730  
    77 *
    88 * @see  https://mailup.it
    9  * @since 1.2.5
     9 * @since 1.2.6
    1010 */
    1111
     
    2323     * The ID of this plugin.
    2424     *
    25      * @since  1.2.5
     25     * @since  1.2.6
    2626     *
    2727     * @var string the ID of this plugin
     
    3232     * The version of this plugin.
    3333     *
    34      * @since  1.2.5
     34     * @since  1.2.6
    3535     *
    3636     * @var string the current version of this plugin
     
    4949     * Initialize the class and set its properties.
    5050     *
    51      * @since 1.2.5
     51     * @since 1.2.6
    5252     *
    5353     * @param string $mailup  the name of this plugin
     
    6464     * Register the stylesheets for the admin area.
    6565     *
    66      * @since 1.2.5
     66     * @since 1.2.6
    6767     */
    6868    public function enqueue_styles(): void
     
    8686     * Register the JavaScript for the admin area.
    8787     *
    88      * @since 1.2.5
     88     * @since 1.2.6
    8989     *
    9090     * @param mixed $hook
  • mailup-email-and-newsletter-subscription-form/trunk/admin/partials/mailup-admin-display.php

    r3003864 r3036730  
    77 *
    88 * @see  https://mailup.it
    9  * @since 1.2.5
     9 * @since 1.2.6
    1010 */
    1111?>
  • mailup-email-and-newsletter-subscription-form/trunk/admin/partials/mailup-admin-fields.php

    r3003864 r3036730  
    77 *
    88 * @see  https://mailup.it
    9  * @since 1.2.5
     9 * @since 1.2.6
    1010 */
    1111?>
  • mailup-email-and-newsletter-subscription-form/trunk/admin/partials/mailup-admin-form.php

    r2978659 r3036730  
    88        <select name='lists' id='lists' class="long_select">
    99                <?php foreach ($lists['api-lists'] as $list) { ?>
    10             <option data-desc="<?php esc_attr_e($list['description'], 'mailup'); ?>" <?php if (null !== $form_mup && $form_mup->list_id === $list['id']) {
     10            <option data-desc="<?php esc_attr_e($list['description'], 'mailup'); ?>" <?php if (null !== $form_mup && intval($form_mup->list_id) === $list['id']) {
    1111                echo 'selected';
    1212            } ?> value="<?php echo $list['id']; ?>">
  • mailup-email-and-newsletter-subscription-form/trunk/admin/partials/mailup-login-platform.php

    r3003864 r3036730  
    77 *
    88 * @see  https://mailup.it
    9  * @since 1.2.5
     9 * @since 1.2.6
    1010 */
    1111?>
  • mailup-email-and-newsletter-subscription-form/trunk/admin/partials/mailup-reset-tokens.php

    r3003864 r3036730  
    77 *
    88 * @see  https://mailup.it
    9  * @since 1.2.5
     9 * @since 1.2.6
    1010 */
    1111?>
  • mailup-email-and-newsletter-subscription-form/trunk/includes/class-mailup-activator.php

    r3003864 r3036730  
    77 *
    88 * @see  https://mailup.it
    9  * @since 1.2.5
     9 * @since 1.2.6
    1010 */
    1111
     
    1515 * This class defines all code necessary to run during the plugin's activation.
    1616 *
    17  * @since      1.2.5
     17 * @since      1.2.6
    1818 *
    1919 * @author     Your Name <email@example.com>
     
    2626     * Long Description.
    2727     *
    28      * @since 1.2.5
     28     * @since 1.2.6
    2929     */
    3030    public static function activate(): void
  • mailup-email-and-newsletter-subscription-form/trunk/includes/class-mailup-deactivator.php

    r3003864 r3036730  
    77 *
    88 * @see  https://mailup.it
    9  * @since 1.2.5
     9 * @since 1.2.6
    1010 */
    1111
     
    1515 * This class defines all code necessary to run during the plugin's deactivation.
    1616 *
    17  * @since      1.2.5
     17 * @since      1.2.6
    1818 *
    1919 * @author     Your Name <email@example.com>
     
    2626     * Long Description.
    2727     *
    28      * @since 1.2.5
     28     * @since 1.2.6
    2929     */
    3030    public static function deactivate(): void
  • mailup-email-and-newsletter-subscription-form/trunk/includes/class-mailup-i18n.php

    r3003864 r3036730  
    1010 *
    1111 * @see  https://mailup.it
    12  * @since 1.2.5
     12 * @since 1.2.6
    1313 */
    1414
     
    1919 * so that it is ready for translation.
    2020 *
    21  * @since      1.2.5
     21 * @since      1.2.6
    2222 *
    2323 * @author     Your Name <email@example.com>
     
    2828     * Load the plugin text domain for translation.
    2929     *
    30      * @since 1.2.5
     30     * @since 1.2.6
    3131     */
    3232    public function load_plugin_textdomain(): void
  • mailup-email-and-newsletter-subscription-form/trunk/includes/class-mailup-loader.php

    r3003864 r3036730  
    77 *
    88 * @see  https://mailup.it
    9  * @since 1.2.5
     9 * @since 1.2.6
    1010 */
    1111
     
    2424     * The array of actions registered with WordPress.
    2525     *
    26      * @since  1.2.5
     26     * @since  1.2.6
    2727     *
    2828     * @var array the actions registered with WordPress to fire when the plugin loads
     
    3333     * The array of filters registered with WordPress.
    3434     *
    35      * @since  1.2.5
     35     * @since  1.2.6
    3636     *
    3737     * @var array the filters registered with WordPress to fire when the plugin loads
     
    4242     * Initialize the collections used to maintain the actions and filters.
    4343     *
    44      * @since 1.2.5
     44     * @since 1.2.6
    4545     */
    4646    public function __construct()
     
    5353     * Add a new action to the collection to be registered with WordPress.
    5454     *
    55      * @since 1.2.5
     55     * @since 1.2.6
    5656     *
    5757     * @param string $hook          the name of the WordPress action that is being registered
     
    6969     * Add a new filter to the collection to be registered with WordPress.
    7070     *
    71      * @since 1.2.5
     71     * @since 1.2.6
    7272     *
    7373     * @param string $hook          the name of the WordPress filter that is being registered
     
    8585     * Register the filters and actions with WordPress.
    8686     *
    87      * @since 1.2.5
     87     * @since 1.2.6
    8888     */
    8989    public function run(): void
     
    102102     * collection.
    103103     *
    104      * @since  1.2.5
     104     * @since  1.2.6
    105105     *
    106106     * @param array  $hooks         the collection of hooks that is being registered (that is, actions or filters)
  • mailup-email-and-newsletter-subscription-form/trunk/includes/class-mailup-model.php

    r3003864 r3036730  
    88 * This class defines all code necessary to run during the plugin's activation.
    99 *
    10  * @since      1.2.5
     10 * @since      1.2.6
    1111 *
    1212 * @author     Your Name <email@example.com>
  • mailup-email-and-newsletter-subscription-form/trunk/includes/class-mailup-requests.php

    r3003864 r3036730  
    77 *
    88 * @see  https://mailup.it
    9  * @since 1.2.5
     9 * @since 1.2.6
    1010 */
    1111
     
    1515 * This class defines all code necessary to run during the plugin's activation.
    1616 *
    17  * @since      1.2.5
     17 * @since      1.2.6
    1818 *
    1919 * @author     Your Name <email@example.com>
     
    116116        $params = [
    117117            'PageNumber' => 0,
    118             'PageSize' => 30,
     118            'PageSize' => 40,
    119119            'orderby' => 'Id+asc',
    120120        ];
  • mailup-email-and-newsletter-subscription-form/trunk/includes/class-mailup-tokens.php

    r3003864 r3036730  
    77 *
    88 * @see  https://mailup.it
    9  * @since 1.2.5
     9 * @since 1.2.6
    1010 */
    1111
     
    1515 * This class defines all code necessary to run during the plugin's activation.
    1616 *
    17  * @since      1.2.5
     17 * @since      1.2.6
    1818 *
    1919 * @author     Your Name <email@example.com>
  • mailup-email-and-newsletter-subscription-form/trunk/includes/class-mailup.php

    r3003864 r3036730  
    1010 *
    1111 * @see  https://mailup.it
    12  * @since 1.2.5
     12 * @since 1.2.6
    1313 */
    1414
     
    2222 * version of the plugin.
    2323 *
    24  * @since      1.2.5
     24 * @since      1.2.6
    2525 *
    2626 * @author     Your Name <email@example.com>
     
    3232     * the plugin.
    3333     *
    34      * @since  1.2.5
     34     * @since  1.2.6
    3535     *
    3636     * @var Mailup_Loader maintains and registers all hooks for the plugin
     
    4141     * The unique identifier of this plugin.
    4242     *
    43      * @since  1.2.5
     43     * @since  1.2.6
    4444     *
    4545     * @var string the string used to uniquely identify this plugin
     
    5050     * The current version of the plugin.
    5151     *
    52      * @since  1.2.5
     52     * @since  1.2.6
    5353     *
    5454     * @var string the current version of the plugin
     
    6363     * the public-facing side of the site.
    6464     *
    65      * @since 1.2.5
     65     * @since 1.2.6
    6666     */
    6767    public function __construct()
     
    7070            $this->version = PLUGIN_NAME_VERSION;
    7171        } else {
    72             $this->version = '1.2.5';
     72            $this->version = '1.2.6';
    7373        }
    7474        $this->mailup = 'mailup';
     
    8585     * Run the loader to execute all of the hooks with WordPress.
    8686     *
    87      * @since 1.2.5
     87     * @since 1.2.6
    8888     */
    8989    public function run(): void
     
    9696     * WordPress and to define internationalization functionality.
    9797     *
    98      * @since  1.2.5
     98     * @since  1.2.6
    9999     *
    100100     * @return string the name of the plugin
     
    113113     * The reference to the class that orchestrates the hooks with the plugin.
    114114     *
    115      * @since  1.2.5
     115     * @since  1.2.6
    116116     *
    117117     * @return Mailup_Loader orchestrates the hooks of the plugin
     
    125125     * Retrieve the version number of the plugin.
    126126     *
    127      * @since  1.2.5
     127     * @since  1.2.6
    128128     *
    129129     * @return string the version number of the plugin
     
    147147     * with WordPress.
    148148     *
    149      * @since  1.2.5
     149     * @since  1.2.6
    150150     */
    151151    private function load_dependencies(): void
     
    183183     * with WordPress.
    184184     *
    185      * @since  1.2.5
     185     * @since  1.2.6
    186186     */
    187187    private function set_locale(): void
     
    196196     * of the plugin.
    197197     *
    198      * @since  1.2.5
     198     * @since  1.2.6
    199199     */
    200200    private function define_admin_hooks(): void
     
    218218     * of the plugin.
    219219     *
    220      * @since  1.2.5
     220     * @since  1.2.6
    221221     */
    222222    private function define_public_hooks(): void
  • mailup-email-and-newsletter-subscription-form/trunk/languages/mailup-en_GB.po

    r3003864 r3036730  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: MailUp for Wordpress | Email and Newsletter Subscription Form 1.2.5\n"
     5"Project-Id-Version: MailUp for Wordpress | Email and Newsletter Subscription Form 1.2.6\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailup-email-and-newsletter-subscription-form\n"
    77"Language-Team: \n"
  • mailup-email-and-newsletter-subscription-form/trunk/languages/mailup-en_US.po

    r3003864 r3036730  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: MailUp for Wordpress | Email and Newsletter Subscription Form 1.2.5\n"
     5"Project-Id-Version: MailUp for Wordpress | Email and Newsletter Subscription Form 1.2.6\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailup-email-and-newsletter-subscription-form\n"
    77"Language-Team: \n"
  • mailup-email-and-newsletter-subscription-form/trunk/languages/mailup-it_IT.po

    r3003864 r3036730  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: MailUp for Wordpress | Email and Newsletter Subscription Form 1.2.5\n"
     5"Project-Id-Version: MailUp for Wordpress | Email and Newsletter Subscription Form 1.2.6\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailup-email-and-newsletter-subscription-form\n"
    77"Language-Team: \n"
  • mailup-email-and-newsletter-subscription-form/trunk/languages/mailup.pot

    r3003864 r3036730  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: MailUp - Email and Newsletter Subscription Form 1.2.5\n"
     5"Project-Id-Version: MailUp - Email and Newsletter Subscription Form 1.2.6\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailup-email-and-newsletter-subscription-form\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • mailup-email-and-newsletter-subscription-form/trunk/mailup.php

    r3003864 r3036730  
    1212 *
    1313 * @see    https://integrations.mailup.com/it/wordpress/
    14  * @since   1.2.5
     14 * @since   1.2.6
    1515 *
    1616 * @wordpress-plugin
     
    1818 * Plugin URI:        https://integrations.mailup.com/it/wordpress/
    1919 * // * Description:       The MailUp plugin for WordPress makes it easy to add a subscription form to a WordPress website and, to collect recipient for your email and sms campaigns. With the MailUp plugin you can easily create a sign-up form, personalise required fields and make it available your website or blog in few clicks.
    20  * Version:           1.2.5
     20 * Version:           1.2.6
    2121 * Author:            MailUp
    2222 * Author URI:        https://www.mailup.com
     
    3434/*
    3535 * Currently plugin version.
    36  * Start at version 1.2.5
     36 * Start at version 1.2.6
    3737 */
    3838
    39 define('WPMUP_PLUGIN_VERSION', '1.2.5');
     39define('WPMUP_PLUGIN_VERSION', '1.2.6');
    4040
    4141define('WPMUP_PLUGIN', __FILE__);
     
    8383 * not affect the page life cycle.
    8484 *
    85  * @since 1.2.5
     85 * @since 1.2.6
    8686 */
    8787function run_mailup(): void
  • mailup-email-and-newsletter-subscription-form/trunk/public/class-mailup-public.php

    r3003864 r3036730  
    77 *
    88 * @see  https://mailup.it
    9  * @since 1.2.5
     9 * @since 1.2.6
    1010 */
    1111
     
    2323     * The ID of this plugin.
    2424     *
    25      * @since  1.2.5
     25     * @since  1.2.6
    2626     *
    2727     * @var string the ID of this plugin
     
    3232     * The version of this plugin.
    3333     *
    34      * @since  1.2.5
     34     * @since  1.2.6
    3535     *
    3636     * @var string the current version of this plugin
     
    4545     * Initialize the class and set its properties.
    4646     *
    47      * @since 1.2.5
     47     * @since 1.2.6
    4848     *
    4949     * @param string $mailup  the name of the plugin
     
    6060     * Register the stylesheets for the public-facing side of the site.
    6161     *
    62      * @since 1.2.5
     62     * @since 1.2.6
    6363     */
    6464    public function enqueue_styles(): void
     
    8282     * Register the JavaScript for the public-facing side of the site.
    8383     *
    84      * @since 1.2.5
     84     * @since 1.2.6
    8585     */
    8686    public function enqueue_scripts(): void
  • mailup-email-and-newsletter-subscription-form/trunk/public/partials/mailup-public-display.php

    r3003864 r3036730  
    77 *
    88 * @see  https://mailup.it
    9  * @since 1.2.5
     9 * @since 1.2.6
    1010 */
    1111?>
  • mailup-email-and-newsletter-subscription-form/trunk/uninstall.php

    r3003864 r3036730  
    2323 *
    2424 * @see  https://mailup.it
    25  * @since 1.2.5
     25 * @since 1.2.6
    2626 */
    2727
Note: See TracChangeset for help on using the changeset viewer.