openstamanager/src/Traits/RecordTrait.php

70 lines
1.9 KiB
PHP
Raw Normal View History

2018-08-11 15:37:38 +02:00
<?php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
2021-01-20 15:08:51 +01:00
* Copyright (C) DevCode s.r.l.
2020-09-07 15:04:06 +02:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2018-08-11 15:37:38 +02:00
namespace Traits;
2018-11-30 19:40:06 +01:00
use Models\Module;
use Models\Plugin;
2018-08-13 10:01:15 +02:00
trait RecordTrait
2018-08-11 15:37:38 +02:00
{
abstract public function getModuleAttribute();
2018-11-30 19:40:06 +01:00
public function getModule()
2018-08-11 15:37:38 +02:00
{
return !empty($this->module) ? Module::pool($this->module) : null;
2018-08-11 15:37:38 +02:00
}
2018-11-30 19:40:06 +01:00
public function getPlugin()
2018-08-11 15:37:38 +02:00
{
return !empty($this->plugin) ? Plugin::pool($this->plugin) : null;
2018-08-11 15:37:38 +02:00
}
/**
* @param string $name
*/
2021-02-18 18:48:44 +01:00
public function customField($name)
{
$field = database()->table('zz_fields')
->leftJoin('zz_field_record', 'zz_fields.id', '=', 'zz_field_record.id_field')
2021-02-18 18:48:44 +01:00
->where('zz_fields.name', '=', $name)
->where('zz_fields.id_module', '=', $this->getModule()->id)
->where('zz_field_record.id_record', '=', $this->id)
->first();
return $field->value;
}
2018-11-30 19:40:06 +01:00
public function uploads()
2018-08-11 15:37:38 +02:00
{
2018-11-30 19:40:06 +01:00
$module = $this->getModule();
$plugin = $this->getPlugin();
2018-08-11 15:37:38 +02:00
2018-11-30 19:40:06 +01:00
if (!empty($module)) {
return $module->uploads($this->id);
2018-08-11 15:37:38 +02:00
}
2018-11-30 19:40:06 +01:00
if (!empty($plugin)) {
return $plugin->uploads($this->id);
}
2018-08-11 15:37:38 +02:00
2018-11-30 19:40:06 +01:00
return collect();
2018-08-11 15:37:38 +02:00
}
}