# css-javascript-toolbox/8.3/tables/author.php

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

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/8.3/code/tables/author.php
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/8.3/raw/tables/author.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/author.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 CJTAuthorTable extends CJTxTable {
	
	/** 
	* 
	* 
	*/
	const FLAG_SYS_AUTHOR = 1;
	
	/**
	* 
	* 
	*/
	const FLAG_LOCAL_AUTHOR = 2;
	
	/**
	 * 
	 * 
	*/
	const FLAG_GLOBAL_AUTHOR = 4;
	
	/**
	* 
	*/
	const WORDPRESS_AUTHOR_ID = 1;
		
	/**
	* put your comment there...
	* 
	*/
	public function __construct($dbDriver) {
		parent::__construct($dbDriver, 'authors');
	}
	
} // End class.
```
