31 lines
341 B
PHP
31 lines
341 B
PHP
<?php
|
|
App::uses('AppModel', 'Model');
|
|
/**
|
|
* Config Model
|
|
*
|
|
*/
|
|
class Config extends AppModel {
|
|
|
|
/**
|
|
* Use table
|
|
*
|
|
* @var mixed False or table name
|
|
*/
|
|
public $useTable = 'Config';
|
|
|
|
/**
|
|
* Primary key field
|
|
*
|
|
* @var string
|
|
*/
|
|
public $primaryKey = 'Id';
|
|
|
|
/**
|
|
* Display field
|
|
*
|
|
* @var string
|
|
*/
|
|
public $displayField = 'Name';
|
|
|
|
}
|