# content-control/2.0.2/classes/Models/RuleEngine/Item.php

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

- Page: https://pluginprobe.com/plugins/content-control/2.0.2/code/classes/Models/RuleEngine/Item.php
- Raw: https://pluginprobe.com/plugins/content-control/2.0.2/raw/classes/Models/RuleEngine/Item.php
- Modified: 2023-09-18T01:47:10+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/2.0.2/code/classes/Models/RuleEngine/Item.php#L10-L20`.

```php
<?php
/**
 * Rule engine item model.
 *
 * @package ContentControl
 * @subpackage Models
 */

namespace ContentControl\Models\RuleEngine;

/**
 * Handler for condition items.
 *
 * @package ContentControl
 */
abstract class Item {

	/**
	 * Item id.
	 *
	 * @var string
	 */
	public $id;

	/**
	 * Return the checks as an array of information.
	 *
	 * Useful for debugging.
	 *
	 * @return array
	 */
	abstract public function get_check_info();
}

```
