1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php namespace AutomateWoo;
use AutomateWoo\Traits\MailServiceAction;
if ( ! defined( 'ABSPATH' ) ) { exit; }
/** * Abstraction extending from Action form implementing the Mailpoet actions. * All Mailpoet actions should extend this class. * * @class Action_Mailpoet_Abstract * @since 5.6.10 */ abstract class Action_Mailpoet_Abstract extends Action {
use MailServiceAction;
/** * Implements Action load_admin_details abstract method * * @see Action::load_admin_details() */ protected function load_admin_details() { $this->group = __( 'MailPoet', 'automatewoo' ); } }
|