1: <?php
2:
3: class SettedConfigurationKey extends AppModel {
4:
5: public $validate = array(
6: 'name' => array(
7: 'notempty' => array(
8: 'rule' => array('notempty'),
9: 'last' => true,
10: ),
11: 'isUnique' => array(
12: 'rule' => array('isUnique'),
13: ),
14: ),
15: 'value' => array(
16: 'notempty' => array(
17: 'rule' => array('notempty'),
18: ),
19: ),
20: );
21: }
22:
23: ?>