Sindbad~EG File Manager
<?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\Parameters\ParametersTypes;
use Glpi\ContentTemplates\Parameters\TemplatesParametersInterface;
/**
* AttributeParameter represent a simple parameter value accessed by a key.
* This can be a simple value from the database (e.g the title of a ticket) or a
* computed value (e.g. the link to a ticket).
*
* @since 10.0.0
*/
class AttributeParameter extends AbstractParameterType
{
/**
* Suggested twig filter to use when displaying the value of this parameter
* This may be a 'raw" filter when the value is raw html, a 'date' filter
* when dealing with timestamp so the user know how to reformat the date as
* needed, ...
*
* @var string
*/
protected $filter;
/**
* @param string $key Key to access this value
* @param string $label Label to display in the autocompletion widget
* @param string $filter Recommanded twig filter to apply on this value
*/
public function __construct(string $key, string $label, string $filter = "")
{
parent::__construct($key, $label);
$this->filter = $filter;
}
public function compute(): array
{
return [
'type' => "AttributeParameter",
'key' => $this->key,
'label' => $this->label,
'filter' => $this->filter,
];
}
public function getDocumentationUsage(?string $parent = null): string
{
$parent = !empty($parent) ? "$parent." : "";
$filter = !empty($this->filter) ? "| {$this->filter}" : "";
return "{{ {$parent}{$this->key} $filter }}";
}
public function getDocumentationReferences(): ?TemplatesParametersInterface
{
return null;
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists