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

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

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/7.2/code/tables/form.php
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/7.2/raw/tables/form.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/7.2/code/tables/form.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 CJTFormTable extends CJTxTable {
	
	/**
	* put your comment there...
	* 
	* @param mixed $dbDriver
	* @return CJTPackageTable
	*/
	public function __construct($dbDriver) {
		// Initialize parent.
		parent::__construct($dbDriver, 'forms');
		// Set table key.
		$this->setTableKey(array('blockId'));
	}
	
} // End class.
```
