| 1 |
<?php |
| 2 |
|
| 3 |
namespace Code_Snippets\Integration\Promotions; |
| 4 |
|
| 5 |
/** |
| 6 |
* Manager class to handle all plugin promotions. |
| 7 |
*/ |
| 8 |
class Promotion_Manager { |
| 9 |
|
| 10 |
/** |
| 11 |
* Constructor to initialize and display promotions. |
| 12 |
*/ |
| 13 |
public function __construct() { |
| 14 |
new Notices\Elementor(); |
| 15 |
new Notices\Header_Footer_Code(); |
| 16 |
new Notices\Header_Footer_Code_Manager(); |
| 17 |
new Notices\Insert_HTML_Snippet(); |
| 18 |
new Notices\Insert_PHP_Code_Snippet(); |
| 19 |
new Notices\Insert_PHP(); |
| 20 |
new Notices\WP_Headers_And_Footers(); |
| 21 |
new Other\Elementor_Editor(); |
| 22 |
} |
| 23 |
} |
| 24 |
|