| 1 |
<?php |
| 2 |
|
| 3 |
if( ! class_exists('BetterDocs\WPNotice\Utils\Base') ) { |
| 4 |
require_once __DIR__ . DIRECTORY_SEPARATOR . 'Utils/Base.php'; |
| 5 |
} |
| 6 |
if( ! class_exists('BetterDocs\WPNotice\Utils\Helper') ) { |
| 7 |
require_once __DIR__ . DIRECTORY_SEPARATOR . 'Utils/Helper.php'; |
| 8 |
} |
| 9 |
if( ! class_exists('BetterDocs\WPNotice\Utils\Storage') ) { |
| 10 |
require_once __DIR__ . DIRECTORY_SEPARATOR . 'Utils/Storage.php'; |
| 11 |
} |
| 12 |
if( ! class_exists('BetterDocs\WPNotice\Dismiss') ) { |
| 13 |
require_once __DIR__ . DIRECTORY_SEPARATOR . 'Dismiss.php'; |
| 14 |
} |
| 15 |
if( ! class_exists('BetterDocs\WPNotice\Notice') ) { |
| 16 |
require_once __DIR__ . DIRECTORY_SEPARATOR . 'Notice.php'; |
| 17 |
} |
| 18 |
if( ! class_exists('BetterDocs\WPNotice\Notices') ) { |
| 19 |
require_once __DIR__ . DIRECTORY_SEPARATOR . 'Notices.php'; |
| 20 |
} |
| 21 |
|