openstamanager/modules/categorie_documenti/src/Categoria.php

54 lines
1.5 KiB
PHP
Raw Normal View History

<?php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.n.c.
*
* 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/>.
*/
namespace Modules\CategorieDocumentali;
use Common\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Categoria extends Model
{
use SoftDeletes;
protected $table = 'do_categorie';
public static function build($descrizione)
{
$model = parent::build();
$model->descrizione = $descrizione;
$model->save();
$gruppi = database()->fetchArray('SELECT `id` FROM `zz_groups`');
2020-02-24 15:43:34 +01:00
$model->syncPermessi(array_column($gruppi, 'id'));
return $model;
}
public function syncPermessi(array $groups)
{
$groups[] = 1;
2019-12-20 11:40:22 +01:00
$database = database();
$database->sync('do_permessi', ['id_categoria' => $this->id], [
'id_gruppo' => $groups,
]);
}
}