array( 'rule' => array('custom', '.*'), 'allowEmpty' => true, 'required' => false, 'message' => 'Post title is required' ), 'body' => array( 'first_rule' => array( 'rule' => array('custom', '.*'), 'allowEmpty' => true, 'required' => false, 'message' => 'Post body is required' ), 'Post body is super required' => array( 'rule' => array('custom', '.*'), 'allowEmpty' => true, 'required' => false, ) ), ); /** * Translation domain to use for validation messages * * @var string */ public $validationDomain = 'test_plugin'; }