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 / back / dynamics / sendmail / plugin.php

plugin.php in AcyMailing – An Ultimate Newsletter Plugin and Marketing Automation Solution for WordPress trunk, at back/dynamics/sendmail/plugin.php

45 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 use AcyMailing\Core\AcymPlugin;
4
5 class plgAcymSendmail extends AcymPlugin
6 {
7 const SENDING_METHOD_ID = 'sendmail';
8 const SENDING_METHOD_NAME = 'SendMail';
9
10 public function __construct()
11 {
12 parent::__construct();
13 $this->pluginDescription->name = self::SENDING_METHOD_NAME;
14 }
15
16 public function onAcymGetSendingMethods(&$data, $isMailer = false)
17 {
18 $data['sendingMethods'][self::SENDING_METHOD_ID] = [
19 'name' => $this->pluginDescription->name,
20 'image' => ACYM_IMAGES.'mailers/sendmail.png',
21 'image_class' => 'acym__selection__card__image__smaller',
22 ];
23 }
24
25 public function onAcymGetSendingMethodsHtmlSetting(&$data)
26 {
27 ob_start();
28 ?>
29 <div class="send_settings grid-x cell" id="<?php echo esc_attr(self::SENDING_METHOD_ID); ?>_settings">
30 <div class="cell grid-x acym_vcenter acym__sending__methods__one__settings">
31 <label for="<?php echo esc_attr(self::SENDING_METHOD_ID); ?>_path" class="cell">
32 <?php echo esc_html(acym_translation('ACYM_SENDMAIL_PATH')); ?>
33 </label>
34 <input id="<?php echo esc_attr(self::SENDING_METHOD_ID); ?>_path"
35 class="cell"
36 type="text"
37 name="config[<?php echo esc_attr(self::SENDING_METHOD_ID); ?>_path]"
38 value="<?php echo esc_attr($this->config->get(self::SENDING_METHOD_ID.'_path', '/usr/sbin/sendmail')); ?>">
39 </div>
40 </div>
41 <?php
42 $data['sendingMethodsHtmlSettings'][self::SENDING_METHOD_ID] = ob_get_clean();
43 }
44 }
45