# css-javascript-toolbox/7.2/tables/block.php

CSS &amp; JavaScript Toolbox, version 7.2. 27 lines.

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/7.2/code/tables/block.php
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/7.2/raw/tables/block.php
- Modified: 2013-03-17T20:09:52+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/7.2/code/tables/block.php#L10-L20`.

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

/**
* Dont be confused between this Table and CJTBlocksTable class
* 
* this is the replacement of the old Blocks Table.
* 
* Use this as the other is deprecated!
* 
*/
class CJTBlockTable extends CJTxTable {

	/**
	* put your comment there...
	* 
	* @param mixed $dbDriver
	* @param bool Is to enable Build In Queue name Generator.
	* @return CJTTemplatesTable
	*/
	public function __construct($dbDriver) {
		parent::__construct($dbDriver, 'blocks');
	}
	
} // End class.
```
