# content-control/trunk/inc/functions.php

Content Control – The Ultimate Content Restriction Plugin! Restrict Content, Create Conditional Blocks &amp; More, version trunk. 29 lines.

- Page: https://pluginprobe.com/plugins/content-control/trunk/code/inc/functions.php
- Raw: https://pluginprobe.com/plugins/content-control/trunk/raw/inc/functions.php
- Modified: 2026-08-20T05:44:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/content-control/trunk/code/inc/functions.php#L10-L20`.

```php
<?php
/**
 * Content Control Function Loader..
 *
 * @package ContentControl
 */

namespace ContentControl;

defined( 'ABSPATH' ) || exit;

require_once 'functions/back-compat.php';
require_once 'functions/compatibility.php';
require_once 'functions/content.php';
require_once 'functions/developers.php';
require_once 'functions/globals.php';
require_once 'functions/install.php';
require_once 'functions/options.php';
require_once 'functions/post-restrictions.php';
require_once 'functions/protections.php';
require_once 'functions/query.php';
require_once 'functions/restrictions.php';
require_once 'functions/rule-callbacks.php';
require_once 'functions/rules.php';
require_once 'functions/term-restrictions.php';
require_once 'functions/upgrades.php';
require_once 'functions/utils.php';
require_once 'functions/widgets.php';

```
