Send tasks by email
This commit is contained in:
@@ -204,4 +204,27 @@ class TaskValidator extends BaseValidator
|
||||
$v->getErrors()
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Validate task email creation
|
||||
*
|
||||
* @access public
|
||||
* @param array $values Required parameters to save an action
|
||||
* @return array $valid, $errors [0] = Success or not, [1] = List of errors
|
||||
*/
|
||||
public function validateEmailCreation(array $values)
|
||||
{
|
||||
$rules = array(
|
||||
new Validators\Required('subject', t('This field is required')),
|
||||
new Validators\Required('email', t('This field is required')),
|
||||
new Validators\Email('email', t('Email address invalid')),
|
||||
);
|
||||
|
||||
$v = new Validator($values, $rules);
|
||||
|
||||
return array(
|
||||
$v->execute(),
|
||||
$v->getErrors()
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user