| 1 |
<?php |
| 2 |
defined('ABSPATH') || die('Restricted Access'); |
| 3 |
|
| 4 |
use AcyMailing\Core\AcymPlugin; |
| 5 |
|
| 6 |
require_once __DIR__.DIRECTORY_SEPARATOR.'TimeAutomationTriggers.php'; |
| 7 |
require_once __DIR__.DIRECTORY_SEPARATOR.'TimeInsertion.php'; |
| 8 |
|
| 9 |
class plgAcymTime extends AcymPlugin |
| 10 |
{ |
| 11 |
use TimeAutomationTriggers; |
| 12 |
use TimeInsertion; |
| 13 |
|
| 14 |
public function __construct() |
| 15 |
{ |
| 16 |
parent::__construct(); |
| 17 |
$this->pluginDescription->name = acym_translation('ACYM_TIME'); |
| 18 |
} |
| 19 |
} |
| 20 |
|