mirror of https://github.com/MISP/MISP
27 lines
564 B
PHP
27 lines
564 B
PHP
<?php
|
|
App::uses('AppModel', 'Model');
|
|
class WarninglistEntry extends AppModel
|
|
{
|
|
public $useTable = 'warninglist_entries';
|
|
|
|
public $recursive = -1;
|
|
|
|
public $actsAs = array(
|
|
'Containable',
|
|
);
|
|
|
|
public $validate = array(
|
|
'value' => array(
|
|
'rule' => array('valueNotEmpty'),
|
|
)
|
|
);
|
|
|
|
public $belongsTo = array(
|
|
'Warninglist' => array(
|
|
'className' => 'Warninglist',
|
|
'foreignKey' => 'warninglist_id',
|
|
'counterCache' => true
|
|
)
|
|
);
|
|
}
|