summaryrefslogtreecommitdiff
path: root/app/Validator
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2017-02-18 18:25:46 -0500
committerFrederic Guillot <fred@kanboard.net>2017-02-18 18:25:46 -0500
commitb4dc602381a367ce9ed1a1bbe28b7903976fdabe (patch)
tree7edc2532f56abd66ff7f20b8a75dd0268d69310c /app/Validator
parent5710bab97198234afced474250f20e24332fd6fc (diff)
Send comments by email
Diffstat (limited to 'app/Validator')
-rw-r--r--app/Validator/CommentValidator.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/Validator/CommentValidator.php b/app/Validator/CommentValidator.php
index fc8e6da8..29994afc 100644
--- a/app/Validator/CommentValidator.php
+++ b/app/Validator/CommentValidator.php
@@ -14,6 +14,31 @@ use SimpleValidator\Validators;
class CommentValidator extends BaseValidator
{
/**
+ * Validate comment 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('task_id', t('This value is required')),
+ new Validators\Required('user_id', t('This value is required')),
+ 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, array_merge($rules, $this->commonValidationRules()));
+
+ return array(
+ $v->execute(),
+ $v->getErrors()
+ );
+ }
+
+ /**
* Validate comment creation
*
* @access public