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