zoneminder/web/api/app/Model/State.php

31 lines
341 B
PHP
Raw Permalink Normal View History

2015-06-11 10:58:58 +08:00
<?php
App::uses('AppModel', 'Model');
/**
* State Model
*
*/
class State extends AppModel {
/**
* Use table
*
* @var mixed False or table name
*/
public $useTable = 'States';
/**
* Primary key field
*
* @var string
*/
public $primaryKey = 'Name';
/**
* Display field
*
* @var string
*/
public $displayField = 'Name';
}