# css-javascript-toolbox/11.5/framework/developer/developer.php

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

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/11.5/code/framework/developer/developer.php
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/11.5/raw/framework/developer/developer.php
- Modified: 2021-12-14T09:07:06+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.5/code/framework/developer/developer.php#L10-L20`.

```php
<?php
/**
* 
*/

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

/**
* 
*/
class CJT_Framework_Developer_Developer {
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $source;
	
	/**
	* put your comment there...
	* 
	* @param mixed $source
	*/
	public function __construct($source) {
		$this->source = $source;
	}

	/**
	* put your comment there...
	* 
	*/
	public function template() {
		static $template = null;
		// Instantiate Template library only when used.
		if (!$template) {
			cssJSToolbox::import('framework:developer:lib:template:template.php');
			$template = new CJT_Framework_Developer_Lib_Template($this->source);
		}
		return $template;
	}

} // End class.
```
