Plugin Directory

Changeset 3444742


Ignore:
Timestamp:
01/22/2026 11:16:03 AM (2 months ago)
Author:
acyba
Message:

4.0 - Major release

Location:
acymailing-integration-for-contact-form-7
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • acymailing-integration-for-contact-form-7/tags/4.0/acymailing-contactform7.php

    r3363054 r3444742  
    66 * Author URI: https://www.acymailing.com
    77 * License: GPLv3
    8  * Version: 3.9
     8 * Version: 4.0
    99 * Requires Plugins: acymailing, contact-form-7
    1010*/
  • acymailing-integration-for-contact-form-7/tags/4.0/readme.txt

    r3363054 r3444742  
    22Contributors: acyba
    33Tags: newsletter, newsletter form, acymailing, form, subscription
    4 Tested up to: 6.8
    5 Stable tag: 3.9
     4Tested up to: 6.9
     5Stable tag: 4.0
    66License: GPLv3
    77License URI: http://www.gnu.org/licenses/gpl-3.0.html
  • acymailing-integration-for-contact-form-7/tags/4.0/views/acymsubDisplay.php

    r3363054 r3444742  
    11<?php
    22if (!defined('ABSPATH')) {
    3     exit;
     3    exit;
    44}
    55?>
     
    77    <span class="<?php echo esc_attr($data['class']); ?>">
    88        <?php
    9         foreach ($data['detailsLists']['displayLists'] as $listId) {
    10             $check = false;
    11             if (in_array($listId, $data['detailsLists']['defaultLists'])) {
    12                 $check = true;
    13             }
    14             $idInput = 'acylist_'.$listId.'_field_'.$data['tagName'];
    15             ?>
     9        foreach ($data['detailsLists']['displayLists'] as $listId) {
     10            $check = false;
     11            if (in_array($listId, $data['detailsLists']['defaultLists'])) {
     12                $check = true;
     13            }
     14            $idInput = 'acylist_'.$listId.'_field_'.$data['tagName'];
     15            ?>
    1616
    1717            <span class="onelist wpcf7-list-item">
     
    2222                <label for="<?php echo esc_attr($idInput); ?>"><?php echo esc_html($data['listNames'][$listId]); ?></label>
    2323            </span>
    24             <?php
    25         }
     24            <?php
     25        }
    2626
    27         $acymmail = '';
    28         $acymname = '';
    29         foreach ($data['tag']->options as $oneOption) {
    30             if (strpos($oneOption, 'acymmail:') !== false) {
    31                 $optionExploded = explode(':', $oneOption);
    32                 $acymmail .= $optionExploded[1];
    33             }
    34             if (strpos($oneOption, 'acymname:') !== false) {
    35                 $optionExploded = explode(':', $oneOption);
    36                 $acymname .= $optionExploded[1];
    37             }
    38         }
    39         ?>
     27        $acymmail = '';
     28        $acymname = '';
     29        foreach ($data['tag']->options as $oneOption) {
     30            if (strpos($oneOption, 'acymmail:') !== false) {
     31                $optionExploded = explode(':', $oneOption);
     32                $acymmail .= $optionExploded[1];
     33            }
     34            if (strpos($oneOption, 'acymname:') !== false) {
     35                $optionExploded = explode(':', $oneOption);
     36                $acymname .= $optionExploded[1];
     37            }
     38        }
     39        ?>
    4040
    4141        <input type="hidden"
     
    4848    </span>
    4949    <?php
    50     echo wp_kses(
    51             $data['validationError'],
    52             [
    53                     'span' => [
    54                             'class' => [],
    55                             'aria-hidden' => [],
    56                     ],
    57             ]
    58     );
    59     ?>
     50    echo wp_kses(
     51        $data['validationError'],
     52        [
     53            'span' => [
     54                'class' => [],
     55                'aria-hidden' => [],
     56            ],
     57        ]
     58    );
     59    ?>
    6060</span>
  • acymailing-integration-for-contact-form-7/tags/4.0/views/acymsubParameters.php

    r3363054 r3444742  
    55?>
    66<div class="control-box">
    7     <fieldset>
    8         <legend><?php echo esc_html(acym_translation('ACYM_INSERT_CONTACTFORM_TAG')); ?>
    9             <a href="https://docs.acymailing.com/addons/wordpress-add-ons/contact-form-7" target="_blank">
     7    <fieldset>
     8        <legend><?php echo esc_html(acym_translation('ACYM_INSERT_CONTACTFORM_TAG')); ?>
     9            <a href="https://docs.acymailing.com/addons/wordpress-add-ons/contact-form-7" target="_blank">
    1010                <?php echo esc_html(acym_translation('ACYM_SEE_DOCUMENTATION')); ?>
    11             </a>
    12         </legend>
     11            </a>
     12        </legend>
    1313
    14         <table class="form-table">
    15             <tbody>
    16                 <tr>
    17                     <th scope="row">
     14        <table class="form-table">
     15            <tbody>
     16                <tr>
     17                    <th scope="row">
    1818                        <?php
    1919                        // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch
    2020                        esc_html_e('Field type', 'contact-form-7');
    2121                        ?>
    22                     </th>
    23                     <td>
    24                         <fieldset>
    25                             <legend class="screen-reader-text">
     22                    </th>
     23                    <td>
     24                        <fieldset>
     25                            <legend class="screen-reader-text">
    2626                                <?php
    2727                                // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch
    2828                                esc_html_e('Field type', 'contact-form-7');
    2929                                ?>
    30                             </legend>
    31                             <label>
    32                                 <input type="checkbox" name="required" /> <?php
     30                            </legend>
     31                            <label>
     32                                <input type="checkbox" name="required" /> <?php
    3333                                // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch
    3434                                esc_html_e('Required field', 'contact-form-7');
    3535                                ?>
    36                             </label>
    37                         </fieldset>
    38                     </td>
    39                 </tr>
    40                 <tr>
    41                     <th scope="row">
    42                         <label for="<?php echo esc_attr($data['args']['content'].'-name'); ?>">
     36                            </label>
     37                        </fieldset>
     38                    </td>
     39                </tr>
     40                <tr>
     41                    <th scope="row">
     42                        <label for="<?php echo esc_attr($data['args']['content'].'-name'); ?>">
    4343                            <?php
    4444                            // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch
    4545                            esc_html_e('Name', 'contact-form-7');
    4646                            ?>
    47                         </label>
    48                     </th>
    49                     <td><input type="text" name="name" class="tg-name oneline" id="<?php echo esc_attr($data['args']['content'].'-name'); ?>" /></td>
    50                 </tr>
    51                 <tr>
    52                     <th scope="row">
    53                         <label for="<?php echo esc_attr($data['args']['content'].'-acymmail'); ?>">
     47                        </label>
     48                    </th>
     49                    <td><input type="text" name="name" class="tg-name oneline" id="<?php echo esc_attr($data['args']['content'].'-name'); ?>" /></td>
     50                </tr>
     51                <tr>
     52                    <th scope="row">
     53                        <label for="<?php echo esc_attr($data['args']['content'].'-acymmail'); ?>">
    5454                            <?php echo esc_html(acym_translation('ACYM_MAIL_FIELD_CONTACT')); ?>
    55                         </label>
    56                     </th>
    57                     <td>
    58                         <input type="text"
    59                                name="acymmail"
    60                                placeholder="your-email"
    61                                class="classvalue oneline option"
    62                                id="<?php echo esc_attr($data['args']['content'].'-acymmail'); ?>" />
    63                     </td>
    64                 </tr>
    65                 <tr>
    66                     <th scope="row">
    67                         <label for="<?php echo esc_attr($data['args']['content'].'-acymname'); ?>">
     55                        </label>
     56                    </th>
     57                    <td>
     58                        <input type="text"
     59                               name="acymmail"
     60                               placeholder="your-email"
     61                               class="classvalue oneline option"
     62                               id="<?php echo esc_attr($data['args']['content'].'-acymmail'); ?>" />
     63                    </td>
     64                </tr>
     65                <tr>
     66                    <th scope="row">
     67                        <label for="<?php echo esc_attr($data['args']['content'].'-acymname'); ?>">
    6868                            <?php echo esc_html(acym_translation('ACYM_NAME_FIELD_CONTACT')); ?>
    69                         </label>
    70                     </th>
    71                     <td>
    72                         <input type="text"
    73                                name="acymname"
    74                                placeholder="your-name"
    75                                class="classvalue oneline option"
    76                                id="<?php echo esc_attr($data['args']['content'].'-acymname'); ?>" />
    77                     </td>
    78                 </tr>
     69                        </label>
     70                    </th>
     71                    <td>
     72                        <input type="text"
     73                               name="acymname"
     74                               placeholder="your-name"
     75                               class="classvalue oneline option"
     76                               id="<?php echo esc_attr($data['args']['content'].'-acymname'); ?>" />
     77                    </td>
     78                </tr>
    7979
    8080                <?php foreach ($data['propertyLabels'] as $key => $label) { ?>
    81                     <tr>
    82                         <th scope="row"><?php echo esc_html($label); ?></th>
    83                         <td>
    84                             <fieldset>
     81                    <tr>
     82                        <th scope="row"><?php echo esc_html($label); ?></th>
     83                        <td>
     84                            <fieldset>
    8585                                <?php
    8686                                echo wp_kses(
     
    100100                                );
    101101                                ?>
    102                                 <input type="hidden" name="<?php echo esc_attr($key); ?>" data-type="<?php echo esc_attr($key); ?>" value="">
    103                             </fieldset>
    104                         </td>
    105                     </tr>
     102                                <input type="hidden" name="<?php echo esc_attr($key); ?>" data-type="<?php echo esc_attr($key); ?>" value="">
     103                            </fieldset>
     104                        </td>
     105                    </tr>
    106106                <?php } ?>
    107107
    108                 <tr>
    109                     <th scope="row">
    110                         <label for="<?php echo esc_attr($data['args']['content'].'-class'); ?>">
     108                <tr>
     109                    <th scope="row">
     110                        <label for="<?php echo esc_attr($data['args']['content'].'-class'); ?>">
    111111                            <?php
    112112                            // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch
    113113                            esc_html_e('Class attribute', 'contact-form-7');
    114114                            ?>
    115                         </label>
    116                     </th>
    117                     <td>
    118                         <input type="text"
    119                                name="class"
    120                                class="classvalue oneline option"
    121                                id="<?php echo esc_attr($data['args']['content'].'-class'); ?>" />
    122                     </td>
    123                 </tr>
    124             </tbody>
    125         </table>
    126         <input type="hidden" name="values" value="">
    127     </fieldset>
     115                        </label>
     116                    </th>
     117                    <td>
     118                        <input type="text"
     119                               name="class"
     120                               class="classvalue oneline option"
     121                               id="<?php echo esc_attr($data['args']['content'].'-class'); ?>" />
     122                    </td>
     123                </tr>
     124            </tbody>
     125        </table>
     126        <input type="hidden" name="values" value="">
     127    </fieldset>
    128128</div>
    129129
    130130<div class="insert-box">
    131     <input type="text" name="acymsub" class="tag code" readonly="readonly" onfocus="this.select()" />
    132     <div class="submitbox">
    133         <input type="button" class="button button-primary insert-tag" value="<?php
     131    <input type="text" name="acymsub" class="tag code" readonly="readonly" onfocus="this.select()" />
     132    <div class="submitbox">
     133        <input type="button" class="button button-primary insert-tag" value="<?php
    134134        // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch
    135135        esc_attr_e('Insert Tag', 'contact-form-7');
    136136        ?>" />
    137     </div>
    138     <br class="clear" />
    139     <p class="description mail-tag">
    140         <label for="<?php echo esc_attr($data['args']['content'].'-mailtag'); ?>">
     137    </div>
     138    <br class="clear" />
     139    <p class="description mail-tag">
     140        <label for="<?php echo esc_attr($data['args']['content'].'-mailtag'); ?>">
    141141            <?php
    142142            echo sprintf(
     
    152152            );
    153153            ?>
    154             <input type="text" class="mail-tag code hidden" readonly="readonly" id="<?php echo esc_attr($data['args']['content'].'-mailtag'); ?>" />
    155         </label>
    156     </p>
     154            <input type="text" class="mail-tag code hidden" readonly="readonly" id="<?php echo esc_attr($data['args']['content'].'-mailtag'); ?>" />
     155        </label>
     156    </p>
    157157</div>
  • acymailing-integration-for-contact-form-7/trunk/acymailing-contactform7.php

    r3363054 r3444742  
    66 * Author URI: https://www.acymailing.com
    77 * License: GPLv3
    8  * Version: 3.9
     8 * Version: 4.0
    99 * Requires Plugins: acymailing, contact-form-7
    1010*/
  • acymailing-integration-for-contact-form-7/trunk/readme.txt

    r3363054 r3444742  
    22Contributors: acyba
    33Tags: newsletter, newsletter form, acymailing, form, subscription
    4 Tested up to: 6.8
    5 Stable tag: 3.9
     4Tested up to: 6.9
     5Stable tag: 4.0
    66License: GPLv3
    77License URI: http://www.gnu.org/licenses/gpl-3.0.html
  • acymailing-integration-for-contact-form-7/trunk/views/acymsubDisplay.php

    r3363054 r3444742  
    11<?php
    22if (!defined('ABSPATH')) {
    3     exit;
     3    exit;
    44}
    55?>
     
    77    <span class="<?php echo esc_attr($data['class']); ?>">
    88        <?php
    9         foreach ($data['detailsLists']['displayLists'] as $listId) {
    10             $check = false;
    11             if (in_array($listId, $data['detailsLists']['defaultLists'])) {
    12                 $check = true;
    13             }
    14             $idInput = 'acylist_'.$listId.'_field_'.$data['tagName'];
    15             ?>
     9        foreach ($data['detailsLists']['displayLists'] as $listId) {
     10            $check = false;
     11            if (in_array($listId, $data['detailsLists']['defaultLists'])) {
     12                $check = true;
     13            }
     14            $idInput = 'acylist_'.$listId.'_field_'.$data['tagName'];
     15            ?>
    1616
    1717            <span class="onelist wpcf7-list-item">
     
    2222                <label for="<?php echo esc_attr($idInput); ?>"><?php echo esc_html($data['listNames'][$listId]); ?></label>
    2323            </span>
    24             <?php
    25         }
     24            <?php
     25        }
    2626
    27         $acymmail = '';
    28         $acymname = '';
    29         foreach ($data['tag']->options as $oneOption) {
    30             if (strpos($oneOption, 'acymmail:') !== false) {
    31                 $optionExploded = explode(':', $oneOption);
    32                 $acymmail .= $optionExploded[1];
    33             }
    34             if (strpos($oneOption, 'acymname:') !== false) {
    35                 $optionExploded = explode(':', $oneOption);
    36                 $acymname .= $optionExploded[1];
    37             }
    38         }
    39         ?>
     27        $acymmail = '';
     28        $acymname = '';
     29        foreach ($data['tag']->options as $oneOption) {
     30            if (strpos($oneOption, 'acymmail:') !== false) {
     31                $optionExploded = explode(':', $oneOption);
     32                $acymmail .= $optionExploded[1];
     33            }
     34            if (strpos($oneOption, 'acymname:') !== false) {
     35                $optionExploded = explode(':', $oneOption);
     36                $acymname .= $optionExploded[1];
     37            }
     38        }
     39        ?>
    4040
    4141        <input type="hidden"
     
    4848    </span>
    4949    <?php
    50     echo wp_kses(
    51             $data['validationError'],
    52             [
    53                     'span' => [
    54                             'class' => [],
    55                             'aria-hidden' => [],
    56                     ],
    57             ]
    58     );
    59     ?>
     50    echo wp_kses(
     51        $data['validationError'],
     52        [
     53            'span' => [
     54                'class' => [],
     55                'aria-hidden' => [],
     56            ],
     57        ]
     58    );
     59    ?>
    6060</span>
  • acymailing-integration-for-contact-form-7/trunk/views/acymsubParameters.php

    r3363054 r3444742  
    55?>
    66<div class="control-box">
    7     <fieldset>
    8         <legend><?php echo esc_html(acym_translation('ACYM_INSERT_CONTACTFORM_TAG')); ?>
    9             <a href="https://docs.acymailing.com/addons/wordpress-add-ons/contact-form-7" target="_blank">
     7    <fieldset>
     8        <legend><?php echo esc_html(acym_translation('ACYM_INSERT_CONTACTFORM_TAG')); ?>
     9            <a href="https://docs.acymailing.com/addons/wordpress-add-ons/contact-form-7" target="_blank">
    1010                <?php echo esc_html(acym_translation('ACYM_SEE_DOCUMENTATION')); ?>
    11             </a>
    12         </legend>
     11            </a>
     12        </legend>
    1313
    14         <table class="form-table">
    15             <tbody>
    16                 <tr>
    17                     <th scope="row">
     14        <table class="form-table">
     15            <tbody>
     16                <tr>
     17                    <th scope="row">
    1818                        <?php
    1919                        // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch
    2020                        esc_html_e('Field type', 'contact-form-7');
    2121                        ?>
    22                     </th>
    23                     <td>
    24                         <fieldset>
    25                             <legend class="screen-reader-text">
     22                    </th>
     23                    <td>
     24                        <fieldset>
     25                            <legend class="screen-reader-text">
    2626                                <?php
    2727                                // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch
    2828                                esc_html_e('Field type', 'contact-form-7');
    2929                                ?>
    30                             </legend>
    31                             <label>
    32                                 <input type="checkbox" name="required" /> <?php
     30                            </legend>
     31                            <label>
     32                                <input type="checkbox" name="required" /> <?php
    3333                                // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch
    3434                                esc_html_e('Required field', 'contact-form-7');
    3535                                ?>
    36                             </label>
    37                         </fieldset>
    38                     </td>
    39                 </tr>
    40                 <tr>
    41                     <th scope="row">
    42                         <label for="<?php echo esc_attr($data['args']['content'].'-name'); ?>">
     36                            </label>
     37                        </fieldset>
     38                    </td>
     39                </tr>
     40                <tr>
     41                    <th scope="row">
     42                        <label for="<?php echo esc_attr($data['args']['content'].'-name'); ?>">
    4343                            <?php
    4444                            // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch
    4545                            esc_html_e('Name', 'contact-form-7');
    4646                            ?>
    47                         </label>
    48                     </th>
    49                     <td><input type="text" name="name" class="tg-name oneline" id="<?php echo esc_attr($data['args']['content'].'-name'); ?>" /></td>
    50                 </tr>
    51                 <tr>
    52                     <th scope="row">
    53                         <label for="<?php echo esc_attr($data['args']['content'].'-acymmail'); ?>">
     47                        </label>
     48                    </th>
     49                    <td><input type="text" name="name" class="tg-name oneline" id="<?php echo esc_attr($data['args']['content'].'-name'); ?>" /></td>
     50                </tr>
     51                <tr>
     52                    <th scope="row">
     53                        <label for="<?php echo esc_attr($data['args']['content'].'-acymmail'); ?>">
    5454                            <?php echo esc_html(acym_translation('ACYM_MAIL_FIELD_CONTACT')); ?>
    55                         </label>
    56                     </th>
    57                     <td>
    58                         <input type="text"
    59                                name="acymmail"
    60                                placeholder="your-email"
    61                                class="classvalue oneline option"
    62                                id="<?php echo esc_attr($data['args']['content'].'-acymmail'); ?>" />
    63                     </td>
    64                 </tr>
    65                 <tr>
    66                     <th scope="row">
    67                         <label for="<?php echo esc_attr($data['args']['content'].'-acymname'); ?>">
     55                        </label>
     56                    </th>
     57                    <td>
     58                        <input type="text"
     59                               name="acymmail"
     60                               placeholder="your-email"
     61                               class="classvalue oneline option"
     62                               id="<?php echo esc_attr($data['args']['content'].'-acymmail'); ?>" />
     63                    </td>
     64                </tr>
     65                <tr>
     66                    <th scope="row">
     67                        <label for="<?php echo esc_attr($data['args']['content'].'-acymname'); ?>">
    6868                            <?php echo esc_html(acym_translation('ACYM_NAME_FIELD_CONTACT')); ?>
    69                         </label>
    70                     </th>
    71                     <td>
    72                         <input type="text"
    73                                name="acymname"
    74                                placeholder="your-name"
    75                                class="classvalue oneline option"
    76                                id="<?php echo esc_attr($data['args']['content'].'-acymname'); ?>" />
    77                     </td>
    78                 </tr>
     69                        </label>
     70                    </th>
     71                    <td>
     72                        <input type="text"
     73                               name="acymname"
     74                               placeholder="your-name"
     75                               class="classvalue oneline option"
     76                               id="<?php echo esc_attr($data['args']['content'].'-acymname'); ?>" />
     77                    </td>
     78                </tr>
    7979
    8080                <?php foreach ($data['propertyLabels'] as $key => $label) { ?>
    81                     <tr>
    82                         <th scope="row"><?php echo esc_html($label); ?></th>
    83                         <td>
    84                             <fieldset>
     81                    <tr>
     82                        <th scope="row"><?php echo esc_html($label); ?></th>
     83                        <td>
     84                            <fieldset>
    8585                                <?php
    8686                                echo wp_kses(
     
    100100                                );
    101101                                ?>
    102                                 <input type="hidden" name="<?php echo esc_attr($key); ?>" data-type="<?php echo esc_attr($key); ?>" value="">
    103                             </fieldset>
    104                         </td>
    105                     </tr>
     102                                <input type="hidden" name="<?php echo esc_attr($key); ?>" data-type="<?php echo esc_attr($key); ?>" value="">
     103                            </fieldset>
     104                        </td>
     105                    </tr>
    106106                <?php } ?>
    107107
    108                 <tr>
    109                     <th scope="row">
    110                         <label for="<?php echo esc_attr($data['args']['content'].'-class'); ?>">
     108                <tr>
     109                    <th scope="row">
     110                        <label for="<?php echo esc_attr($data['args']['content'].'-class'); ?>">
    111111                            <?php
    112112                            // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch
    113113                            esc_html_e('Class attribute', 'contact-form-7');
    114114                            ?>
    115                         </label>
    116                     </th>
    117                     <td>
    118                         <input type="text"
    119                                name="class"
    120                                class="classvalue oneline option"
    121                                id="<?php echo esc_attr($data['args']['content'].'-class'); ?>" />
    122                     </td>
    123                 </tr>
    124             </tbody>
    125         </table>
    126         <input type="hidden" name="values" value="">
    127     </fieldset>
     115                        </label>
     116                    </th>
     117                    <td>
     118                        <input type="text"
     119                               name="class"
     120                               class="classvalue oneline option"
     121                               id="<?php echo esc_attr($data['args']['content'].'-class'); ?>" />
     122                    </td>
     123                </tr>
     124            </tbody>
     125        </table>
     126        <input type="hidden" name="values" value="">
     127    </fieldset>
    128128</div>
    129129
    130130<div class="insert-box">
    131     <input type="text" name="acymsub" class="tag code" readonly="readonly" onfocus="this.select()" />
    132     <div class="submitbox">
    133         <input type="button" class="button button-primary insert-tag" value="<?php
     131    <input type="text" name="acymsub" class="tag code" readonly="readonly" onfocus="this.select()" />
     132    <div class="submitbox">
     133        <input type="button" class="button button-primary insert-tag" value="<?php
    134134        // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch
    135135        esc_attr_e('Insert Tag', 'contact-form-7');
    136136        ?>" />
    137     </div>
    138     <br class="clear" />
    139     <p class="description mail-tag">
    140         <label for="<?php echo esc_attr($data['args']['content'].'-mailtag'); ?>">
     137    </div>
     138    <br class="clear" />
     139    <p class="description mail-tag">
     140        <label for="<?php echo esc_attr($data['args']['content'].'-mailtag'); ?>">
    141141            <?php
    142142            echo sprintf(
     
    152152            );
    153153            ?>
    154             <input type="text" class="mail-tag code hidden" readonly="readonly" id="<?php echo esc_attr($data['args']['content'].'-mailtag'); ?>" />
    155         </label>
    156     </p>
     154            <input type="text" class="mail-tag code hidden" readonly="readonly" id="<?php echo esc_attr($data['args']['content'].'-mailtag'); ?>" />
     155        </label>
     156    </p>
    157157</div>
Note: See TracChangeset for help on using the changeset viewer.