1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
namespace YayMail\Engine;
use YayMail\Utils\SingletonTrait; use YayMail\Migrations\MainMigration; /** * Activate and deactive method of the plugin and relates. */ class ActDeact { use SingletonTrait;
protected function __construct() {}
public static function activate() { }
public static function deactivate() { } }
// Shortcodes to be replaced
|