# css-javascript-toolbox/8.3/tables/block-template.php

CSS &amp; JavaScript Toolbox, version 8.3. 28 lines.

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/8.3/code/tables/block-template.php
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/8.3/raw/tables/block-template.php
- Modified: 2014-05-06T16:47:26+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/8.3/code/tables/block-template.php#L10-L20`.

```php
<?php
/**
* @version $ Id; ?FILE_NAME ?DATE ?TIME ?AUTHOR $
*/

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

/**
* 
* DESCRIPTION
* 
* @author ??
* @version ??
*/
class CJTBlockTemplateTable extends CJTxTable {
	
	/**
	* put your comment there...
	* 
	* @param mixed $dbDriver
	* @return CJTTemplatesTable
	*/
	public function __construct($dbDriver) {
		parent::__construct($dbDriver, 'block_templates');
	}
	
} // End class.
```
