PluginProbe
AcyMailing – An Ultimate Newsletter Plugin and Marketing Automation Solution for WordPress / trunk
AcyMailing – An Ultimate Newsletter Plugin and Marketing Automation Solution for WordPress vtrunk
11.0.5 11.0.4 11.0.3 11.0.2 11.0.1 11.0.0 10.11.1 10.11.0 10.10.2 10.10.1 10.10.0 10.9.1 trunk 10.0.0 10.0.1 10.1.0 10.1.1 10.1.2 10.1.3 10.1.4 10.2.0 10.2.1 10.2.2 10.3.0 10.4.0 All 60 releases
acymailing / front / FrontViews / Frontcampaigns / tmpl / edit_email_info.php

edit_email_info.php in AcyMailing – An Ultimate Newsletter Plugin and Marketing Automation Solution for WordPress trunk, at front/FrontViews/Frontcampaigns/tmpl/edit_email_info.php

20 lines 711 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 // phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- View file, its variables are local to the include scope, not true globals.
3 defined('ABSPATH') || die('Restricted Access');
4 ?>
5 <div class="cell grid-x grid-margin-x margin-y">
6 <div class="cell large-6">
7 <label>
8 <?php echo esc_html(acym_translation('ACYM_CAMPAIGN_NAME')); ?>
9 <input name="mail[name]" type="text" value="<?php echo esc_attr($data['mailInformation']->name); ?>">
10 </label>
11 </div>
12
13 <?php
14 if (empty($data['multilingual']) && empty($data['abtest'])) {
15 $preheaderSize = '';
16 include acym_getView('campaigns', 'edit_email_info_content', true);
17 }
18 ?>
19 </div>
20