23 lines
360 B
PHP
23 lines
360 B
PHP
<?php
|
|
/**
|
|
* Created by CS medien- & kommunikationssysteme.
|
|
* @author Christian Steinle
|
|
* @date 12.10.2016
|
|
*
|
|
* @copyright CS medien- & kommunikationssysteme (http://www.steinle-computer.de)
|
|
*/
|
|
|
|
namespace Model;
|
|
|
|
|
|
use Helper\Database;
|
|
|
|
class TextModel extends Database
|
|
{
|
|
const TBL_NAME = TBL_TEXT;
|
|
|
|
const PRIMARY_KEY = 'textID';
|
|
|
|
const ORDER_BY = '';
|
|
|
|
} |