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