| 1 | <?php |
||
| 14 | abstract class Modeles extends \BFWSql\Sql |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var $tableName The table name |
||
| 18 | */ |
||
| 19 | protected $tableName = ''; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var $tableNameWithPrefix the table name with prefix |
||
| 23 | */ |
||
| 24 | protected $tableNameWithPrefix = ''; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var $baseKeyName The baseKeyName to use to connection. |
||
| 28 | * Use it if they are multiple database to connect in the application. |
||
| 29 | */ |
||
| 30 | protected $baseKeyName = ''; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Constructor |
||
| 34 | */ |
||
| 35 | public function __construct() |
||
| 62 | } |
||
| 63 |