# content-control/1.1.2/classes/Site.php

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

- Page: https://pluginprobe.com/plugins/content-control/1.1.2/code/classes/Site.php
- Raw: https://pluginprobe.com/plugins/content-control/1.1.2/raw/classes/Site.php
- Modified: 2016-09-30T20:07:12+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/1.1.2/code/classes/Site.php#L10-L20`.

```php
<?php


namespace JP\CC;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}


class Site {

	public static function init() {
		Site\Posts::init();
		Site\Feeds::init();
		Site\Widgets::init();
		Site\Restrictions::init();
	}

}

```
