init.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace FSVendor; |
| 4 | |
| 5 | require_once __DIR__ . '/vendor/autoload.php'; |
| 6 | if (!\class_exists('FSVendor\WPDesk\Notice\AjaxHandler')) { |
| 7 | require_once __DIR__ . '/src/WPDesk/Notice/AjaxHandler.php'; |
| 8 | } |
| 9 | if (!\class_exists('FSVendor\WPDesk\Notice\Notice')) { |
| 10 | require_once __DIR__ . 'src/WPDesk/Notice/Notice.php'; |
| 11 | } |
| 12 | if (!\class_exists('FSVendor\WPDesk\Notice\PermanentDismissibleNotice')) { |
| 13 | require_once __DIR__ . '/src/WPDesk/Notice/PermanentDismissibleNotice.php'; |
| 14 | } |
| 15 | if (!\class_exists('FSVendor\WPDesk\Notice\Factory')) { |
| 16 | require_once __DIR__ . '/src/WPDesk/Notice/Factory.php'; |
| 17 | } |
| 18 | require_once __DIR__ . '/src/WPDesk/notice-functions.php'; |
| 19 |