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 / user / plugin.php

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

27 lines 781 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 defined('ABSPATH') || die('Restricted Access');
3
4 use AcyMailing\Core\AcymPlugin;
5
6 require_once __DIR__.DIRECTORY_SEPARATOR.'UserAutomationAction.php';
7 require_once __DIR__.DIRECTORY_SEPARATOR.'UserAutomationConditions.php';
8 require_once __DIR__.DIRECTORY_SEPARATOR.'UserAutomationFilters.php';
9 require_once __DIR__.DIRECTORY_SEPARATOR.'UserInsertion.php';
10 require_once __DIR__.DIRECTORY_SEPARATOR.'UserBirthday.php';
11
12 class plgAcymUser extends AcymPlugin
13 {
14 use UserAutomationActions;
15 use UserAutomationConditions;
16 use UserAutomationFilters;
17 use UserInsertion;
18 use UserBirthday;
19
20 public function __construct()
21 {
22 parent::__construct();
23
24 $this->pluginDescription->name = acym_translationSprintf('ACYM_CMS_USER', 'WordPress');
25 }
26 }
27