71 lines
1.3 KiB
PHP
71 lines
1.3 KiB
PHP
<?php
|
|
App::uses('AppModel', 'CameraModel');
|
|
/**
|
|
* Model CameraModel
|
|
*
|
|
* @property Name $Name
|
|
* @property ManufacturerId $ManufacturerId
|
|
*/
|
|
class CameraModel extends AppModel {
|
|
|
|
/**
|
|
* Use table
|
|
*
|
|
* @var mixed False or table name
|
|
*/
|
|
public $useTable = 'Models';
|
|
|
|
/**
|
|
* Primary key field
|
|
*
|
|
* @var string
|
|
*/
|
|
public $primaryKey = 'Id';
|
|
|
|
/**
|
|
* Display field
|
|
*
|
|
* @var string
|
|
*/
|
|
public $displayField = 'Name';
|
|
|
|
public $recursive = -1;
|
|
|
|
/**
|
|
* Validation rules
|
|
*
|
|
* @var array
|
|
*/
|
|
public $validate = array(
|
|
'Name' => array(
|
|
'notBlank' => array(
|
|
'rule' => array('notBlank'))),
|
|
'Id' => array(
|
|
'numeric' => array(
|
|
'rule' => array('numeric'),
|
|
//'message' => 'Your custom message here',
|
|
//'allowEmpty' => false,
|
|
//'required' => false,
|
|
//'last' => false, // Stop validation after this rule
|
|
//'on' => 'create', // Limit validation to 'create' or 'update' operations
|
|
),
|
|
),
|
|
);
|
|
|
|
//The Associations below have been created with all possible keys, those that are not needed can be removed
|
|
|
|
/**
|
|
* hasMany associations
|
|
*
|
|
* @var array
|
|
*/
|
|
public $hasOne = array(
|
|
'Manufacturer' => array(
|
|
'className' => 'Manufacturer',
|
|
'joinTable' => 'Manufacturers',
|
|
'foreignKey' => 'Id',
|
|
),
|
|
);
|
|
//var $actsAs = array( 'Containable' );
|
|
}
|