phrases system

This commit is contained in:
root
2016-06-21 16:25:55 +02:00
parent 68963a962a
commit ca83b2f59d
12 changed files with 459 additions and 13 deletions
@@ -0,0 +1,15 @@
<?php
class Phrase_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_phrase';
$this->pk = 'phrase_id';
}
}