# css-javascript-toolbox/11.9/views/blocks/info/view.php

CSS &amp; JavaScript Toolbox, version 11.9. 44 lines.

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/11.9/code/views/blocks/info/view.php
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/11.9/raw/views/blocks/info/view.php
- Modified: 2024-01-15T08:59:08+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/css-javascript-toolbox/11.9/code/views/blocks/info/view.php#L10-L20`.

```php
<?php
/**
* @version view.php
*/

/**
* No direct access.
*/
defined('ABSPATH') or die("Access denied");

/**
* Blocks view.
*/
class CJTBlocksInfoView extends CJTView {
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	public $info = null;
	
	/**
	* put your comment there...
	* 
	* @param mixed $parameters
	* @return CJTBlockView
	*/
	public function __construct($parameters) {
		parent::__construct($parameters);
	}
	
	/**
	* put your comment there...
	* 
	*/
	public function display() {
		echo $this->getTemplate('default');
	}
	
} // End class

// Hookable!!
CJTBlocksInfoView::define('CJTBlocksInfoView');
```
