FHC Helper

This commit is contained in:
Paminger
2016-06-29 08:41:02 +02:00
parent 6af45f99f6
commit 9a44c818ea
31 changed files with 957 additions and 71 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
class App_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'system.tbl_app';
$this->pk = 'app';
}
}