opensupports/server/libs/validations/validOwnersId.php

21 lines
444 B
PHP
Raw Normal View History

2020-01-24 02:26:32 +01:00
<?php
namespace CustomValidations;
use Respect\Validation\Rules\AbstractRule;
class ValidOwnersId extends AbstractRule {
public function validate($owners) {
if(is_array(json_decode($owners))){
foreach (json_decode($owners) as $owner) {
$author = \Ticket::getDataStore($owner, "owner_id");
if($author->isNull()) return false;
}
return true;
}
return false;
}
}