
Shift automatically applies the Laravel coding style - which uses the PSR-12 coding style as a base with some minor additions. You may customize the code style applied by configuring [Pint](https://laravel.com/docs/pint), [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), or [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) for your project root. For more information on customizing the code style applied by Shift, [watch this short video](https://laravelshift.com/videos/shift-code-style).
65 lines
1.7 KiB
PHP
65 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Model\MailJob;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Condition extends Model
|
|
{
|
|
protected $table = 'conditions';
|
|
|
|
protected $fillable = ['job', 'value'];
|
|
|
|
public function getConditionValue($job)
|
|
{
|
|
$value = ['condition' => '', 'at' => ''];
|
|
$condition = $this->where('job', $job)->first();
|
|
if ($condition) {
|
|
$condition_value = explode(',', $condition->value);
|
|
$value = ['condition' => $condition_value, 'at' => ''];
|
|
if (is_array($condition_value)) {
|
|
$value = ['condition' => $this->checkArray(0, $condition_value), 'at' => $this->checkArray(1, $condition_value)];
|
|
}
|
|
}
|
|
|
|
return $value;
|
|
}
|
|
|
|
public function checkArray($key, $array)
|
|
{
|
|
$value = '';
|
|
if (is_array($array)) {
|
|
if (array_key_exists($key, $array)) {
|
|
$value = $array[$key];
|
|
}
|
|
}
|
|
|
|
return $value;
|
|
}
|
|
|
|
public function checkActiveJob()
|
|
{
|
|
$result = ['fetching' => '', 'notification' => '', 'work' => '', 'message' => '', 'remind' => ''];
|
|
$emails = new \App\Model\helpdesk\Settings\Email();
|
|
$email = $emails->find(1);
|
|
if ($email) {
|
|
if ($email->email_fetching == 1) {
|
|
$result['fetching'] = true;
|
|
}
|
|
if ($email->notification_cron == 1) {
|
|
$result['notification'] = true;
|
|
}
|
|
}
|
|
$works = new \App\Model\helpdesk\Workflow\WorkflowClose();
|
|
$work = $works->find(1);
|
|
//dd($work);
|
|
if ($work) {
|
|
if ($work->condition == 1) {
|
|
$result['work'] = true;
|
|
}
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|