| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Provides Base Model Class |
| 5 |
*/ |
| 6 |
|
| 7 |
namespace BitCode\BitForm\Core\Database; |
| 8 |
|
| 9 |
/** |
| 10 |
* Undocumented class |
| 11 |
*/ |
| 12 |
|
| 13 |
class FormModel extends Model |
| 14 |
{ |
| 15 |
protected static $table = 'bitforms_form'; |
| 16 |
|
| 17 |
/* public function getNewFormId() |
| 18 |
{ |
| 19 |
$table = $this->app_db->prefix . 'bitforms_form'; |
| 20 |
$this->app_db->query("SELECT id FROM $table ORDER BY id DESC LIMIT 1"); |
| 21 |
return $this->app_db->last_result; |
| 22 |
} */ |
| 23 |
} |
| 24 |
|