| 1 |
<?php |
| 2 |
/** |
| 3 |
* |
| 4 |
*/ |
| 5 |
|
| 6 |
/** |
| 7 |
* Dont be confused between this Table and CJTBlocksTable class |
| 8 |
* |
| 9 |
* this is the replacement of the old Blocks Table. |
| 10 |
* |
| 11 |
* Use this as the other is deprecated! |
| 12 |
* |
| 13 |
*/ |
| 14 |
class CJTBlockTable extends CJTxTable { |
| 15 |
|
| 16 |
/** |
| 17 |
* put your comment there... |
| 18 |
* |
| 19 |
* @param mixed $dbDriver |
| 20 |
* @param bool Is to enable Build In Queue name Generator. |
| 21 |
* @return CJTTemplatesTable |
| 22 |
*/ |
| 23 |
public function __construct($dbDriver) { |
| 24 |
parent::__construct($dbDriver, 'blocks'); |
| 25 |
} |
| 26 |
|
| 27 |
} // End class. |