Current File : /home/escuelai/public_html/it/src/ContentTemplates/ParametersPreset.php |
<?php
/**
* ---------------------------------------------------------------------
*
* GLPI - Gestionnaire Libre de Parc Informatique
*
* http://glpi-project.org
*
* @copyright 2015-2022 Teclib' and contributors.
* @copyright 2003-2014 by the INDEPNET Development Team.
* @licence https://www.gnu.org/licenses/gpl-3.0.html
*
* ---------------------------------------------------------------------
*
* LICENSE
*
* This file is part of GLPI.
*
* 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 Glpi\ContentTemplates;
use Glpi\ContentTemplates\Parameters\ChangeParameters;
use Glpi\ContentTemplates\Parameters\ParametersTypes\AttributeParameter;
use Glpi\ContentTemplates\Parameters\ParametersTypes\ObjectParameter;
use Glpi\ContentTemplates\Parameters\ProblemParameters;
use Glpi\ContentTemplates\Parameters\TicketParameters;
use ITILSolution;
use SolutionTemplate;
use TaskTemplate;
use TicketTemplate;
/**
* Helper class to get some predefined groups of twig parameters
*/
class ParametersPreset
{
/**
* Twig parameters that will be avaiable in solution/task/followup form
*/
public const ITIL_CHILD_TEMPLATE = 'itilchildtemplate';
/**
* Twig parameters that will be available in the solution massive actions
* form for tickets
*/
public const TICKET_SOLUTION = 'ticketsolution';
/**
* Get parameters from their unique key (one of the contant above).
* This is useful when sending data through a form, the controller can
* receive a key value and fetch the parameters with this method.
*
* @param string $key
*
* @return array
*/
public static function getByKey(string $key): array
{
switch ($key) {
case self::ITIL_CHILD_TEMPLATE:
return self::getForAbstractTemplates();
case self::TICKET_SOLUTION:
return self::getForTicketSolution();
default:
return [];
}
}
/**
* Get context to be displayed in the variable list page for each keys
*
* @param string $key
*
* @return string
*/
public static function getContextByKey(string $key): string
{
switch ($key) {
case self::ITIL_CHILD_TEMPLATE:
$types = [
TicketTemplate::getTypeName(1),
TaskTemplate::getTypeName(1),
SolutionTemplate::getTypeName(1),
];
return implode("/", $types);
case self::TICKET_SOLUTION:
return ITILSolution::getTypeName(1);
default:
return "";
}
}
/**
* Twig parameters that will be avaiable in solution/task/followup form
*
* @return array
*/
public static function getForAbstractTemplates(): array
{
return [
new AttributeParameter('itemtype', __('Itemtype')),
new ObjectParameter(new TicketParameters()),
new ObjectParameter(new ChangeParameters()),
new ObjectParameter(new ProblemParameters())
];
}
/**
* Twig parameters that will be available in the solution massive actions
* form for tickets
*
* @return array
*/
public static function getForTicketSolution(): array
{
return [
new AttributeParameter('itemtype', __('Itemtype')),
new ObjectParameter(new TicketParameters()),
];
}
}