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