PluginProbe
AcyMailing – An Ultimate Newsletter Plugin and Marketing Automation Solution for WordPress / 11.0.4
AcyMailing – An Ultimate Newsletter Plugin and Marketing Automation Solution for WordPress v11.0.4
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 / back / Types / UploadFileType.php

UploadFileType.php in AcyMailing – An Ultimate Newsletter Plugin and Marketing Automation Solution for WordPress 11.0.4, at back/Types/UploadFileType.php

33 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace AcyMailing\Types;
4
5 use AcyMailing\Core\AcymObject;
6
7 class UploadFileType extends AcymObject
8 {
9 public function display(string $map, int $num): void
10 {
11 echo '<input type="hidden" name="'.esc_attr($map).'[]" id="'.esc_attr($map.$num).'" />';
12
13 $ctrlFile = acym_isAdmin() ? 'file' : 'frontfile';
14 acym_modal(
15 acym_translation('ACYM_SELECT'),
16 '',
17 'acym__campaign__email__'.$map.$num,
18 [
19 'width' => '800',
20 'style' => 'width:800px;',
21 'data-reveal-larger' => true,
22 ],
23 [
24 'class' => 'button-secondary button acym__campaign__attach__button margin-top-0 margin-bottom-0 cell medium-shrink',
25 'data-iframe' => acym_completeLink($ctrlFile.'&task=select&id='.$map.$num, true),
26 'data-ajax' => 'false',
27 ]
28 );
29
30 echo '<span id="'.esc_attr($map.$num).'selection" class="acy_selected_attachment cell medium-shrink"></span>';
31 }
32 }
33