# css-javascript-toolbox/12/tables/package-objects.php

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

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/12/code/tables/package-objects.php
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/12/raw/tables/package-objects.php
- Modified: 2024-08-07T14:30: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/12/code/tables/package-objects.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 CJTPackageObjectsTable extends CJTxTable {
	
	/**
	* put your comment there...
	* 
	* @param mixed $dbDriver
	* @return CJTPackageTable
	*/
	public function __construct($dbDriver) {
		parent::__construct($dbDriver, 'package_objects');
	}
	
} // End class.
```
