mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-01-02 11:18:02 -05:00
34 lines
411 B
PHP
34 lines
411 B
PHP
<?php
|
|
App::uses('AppModel', 'Model');
|
|
/**
|
|
* Tag Model
|
|
*
|
|
*/
|
|
class Floorplan extends AppModel {
|
|
|
|
/**
|
|
* Use table
|
|
*
|
|
* @var mixed False or table name
|
|
*/
|
|
public $useTable = 'Floorplans';
|
|
|
|
/**
|
|
* Primary key field
|
|
*
|
|
* @var string
|
|
*/
|
|
public $primaryKey = 'id';
|
|
|
|
/**
|
|
* Display field
|
|
*
|
|
* @var string
|
|
*/
|
|
public $displayField = 'name';
|
|
|
|
public $recursive = -1;
|
|
|
|
var $actsAs = array( 'Containable' );
|
|
}
|