| 1 |
<?php |
| 2 |
/** |
| 3 |
* Content Control Function Loader.. |
| 4 |
* |
| 5 |
* @package ContentControl |
| 6 |
*/ |
| 7 |
|
| 8 |
namespace ContentControl; |
| 9 |
|
| 10 |
defined( 'ABSPATH' ) || exit; |
| 11 |
|
| 12 |
require_once 'functions/back-compat.php'; |
| 13 |
require_once 'functions/compatibility.php'; |
| 14 |
require_once 'functions/content.php'; |
| 15 |
require_once 'functions/developers.php'; |
| 16 |
require_once 'functions/globals.php'; |
| 17 |
require_once 'functions/install.php'; |
| 18 |
require_once 'functions/options.php'; |
| 19 |
require_once 'functions/post-restrictions.php'; |
| 20 |
require_once 'functions/protections.php'; |
| 21 |
require_once 'functions/query.php'; |
| 22 |
require_once 'functions/restrictions.php'; |
| 23 |
require_once 'functions/rule-callbacks.php'; |
| 24 |
require_once 'functions/rules.php'; |
| 25 |
require_once 'functions/term-restrictions.php'; |
| 26 |
require_once 'functions/upgrades.php'; |
| 27 |
require_once 'functions/utils.php'; |
| 28 |
require_once 'functions/widgets.php'; |
| 29 |
|