| 1 |
<?php |
| 2 |
/** |
| 3 |
* @version $ Id; ?FILE_NAME ?DATE ?TIME ?AUTHOR $ |
| 4 |
*/ |
| 5 |
|
| 6 |
// Disallow direct access. |
| 7 |
defined('ABSPATH') or die("Access denied"); |
| 8 |
|
| 9 |
/** |
| 10 |
* |
| 11 |
* DESCRIPTION |
| 12 |
* |
| 13 |
* @author ?? |
| 14 |
* @version ?? |
| 15 |
*/ |
| 16 |
class CJTAuthorTable extends CJTxTable { |
| 17 |
|
| 18 |
/** |
| 19 |
* |
| 20 |
* |
| 21 |
*/ |
| 22 |
const FLAG_SYS_AUTHOR = 1; |
| 23 |
|
| 24 |
/** |
| 25 |
* |
| 26 |
* |
| 27 |
*/ |
| 28 |
const FLAG_LOCAL_AUTHOR = 2; |
| 29 |
|
| 30 |
/** |
| 31 |
* |
| 32 |
* |
| 33 |
*/ |
| 34 |
const FLAG_GLOBAL_AUTHOR = 4; |
| 35 |
|
| 36 |
/** |
| 37 |
* |
| 38 |
*/ |
| 39 |
const WORDPRESS_AUTHOR_ID = 1; |
| 40 |
|
| 41 |
/** |
| 42 |
* put your comment there... |
| 43 |
* |
| 44 |
*/ |
| 45 |
public function __construct($dbDriver) { |
| 46 |
parent::__construct($dbDriver, 'authors'); |
| 47 |
} |
| 48 |
|
| 49 |
} // End class. |