| 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 |
|