# acymailing/trunk/back/dynamics/time/plugin.php

AcyMailing – An Ultimate Newsletter Plugin and Marketing Automation Solution for WordPress, version trunk. 20 lines.

- Page: https://pluginprobe.com/plugins/acymailing/trunk/code/back/dynamics/time/plugin.php
- Raw: https://pluginprobe.com/plugins/acymailing/trunk/raw/back/dynamics/time/plugin.php
- Modified: 2026-08-03T10:18:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/acymailing/trunk/code/back/dynamics/time/plugin.php#L10-L20`.

```php
<?php
defined('ABSPATH') || die('Restricted Access');

use AcyMailing\Core\AcymPlugin;

require_once __DIR__.DIRECTORY_SEPARATOR.'TimeAutomationTriggers.php';
require_once __DIR__.DIRECTORY_SEPARATOR.'TimeInsertion.php';

class plgAcymTime extends AcymPlugin
{
    use TimeAutomationTriggers;
    use TimeInsertion;

    public function __construct()
    {
        parent::__construct();
        $this->pluginDescription->name = acym_translation('ACYM_TIME');
    }
}

```
