Sindbad~EG File Manager
<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
/* components/user/picture.html.twig */
class __TwigTemplate_1417e9e89ae48b375433f48cef9814af extends Template
{
private $source;
private $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [
];
}
protected function doDisplay(array $context, array $blocks = [])
{
$macros = $this->macros;
// line 33
echo "
";
// line 34
$context["enable_anonymization"] = (($context["enable_anonymization"]) ?? (false));
// line 35
$context["avatar_size"] = (($context["avatar_size"]) ?? ("avatar-md"));
// line 36
$context["anonymized"] = (($context["enable_anonymization"] ?? null) && ($this->extensions['Glpi\Application\View\Extension\ConfigExtension']->getEntityConfig("anonymize_support_agents", $this->extensions['Glpi\Application\View\Extension\SessionExtension']->session("glpiactive_entity")) != twig_constant("Entity::ANONYMIZE_DISABLED")));
// line 37
$context["user"] = $this->extensions['Glpi\Application\View\Extension\ItemtypeExtension']->getItem("User", ($context["users_id"] ?? null));
// line 38
$context["with_link"] = (($context["with_link"]) ?? (true));
// line 39
$context["user_thumbnail"] = twig_get_attribute($this->env, $this->source, ($context["user"] ?? null), "getThumbnailPicturePath", [0 => ($context["enable_anonymization"] ?? null)], "method", false, false, false, 39);
// line 40
if (((($context["user_thumbnail"] ?? null) == null) && !$this->extensions['Glpi\Application\View\Extension\ConfigExtension']->getEntityConfig("display_users_initials", $this->extensions['Glpi\Application\View\Extension\SessionExtension']->session("glpiactive_entity")))) {
// line 41
echo " ";
$context["user_thumbnail"] = twig_get_attribute($this->env, $this->source, ($context["user"] ?? null), "getPicturePath", [0 => ($context["enable_anonymization"] ?? null)], "method", false, false, false, 41);
}
// line 43
echo "
";
// line 44
if ((($context["with_link"] ?? null) && !($context["anonymized"] ?? null))) {
// line 45
echo " <a href=\"";
echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, ($context["user"] ?? null), "getLinkURL", [], "method", false, false, false, 45), "html", null, true);
echo "\" class=\"d-flex align-items-center\">
";
}
// line 47
echo "
<span class=\"avatar ";
// line 48
echo twig_escape_filter($this->env, ($context["avatar_size"] ?? null), "html", null, true);
echo " rounded\"
style=\"";
// line 49
if ( !(null === ($context["user_thumbnail"] ?? null))) {
echo "background-image: url(";
echo twig_escape_filter($this->env, ($context["user_thumbnail"] ?? null), "html", null, true);
echo "); ";
}
echo "background-color: ";
echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, ($context["user"] ?? null), "getUserInitialsBgColor", [], "method", false, false, false, 49), "html", null, true);
echo "\">
";
// line 50
if ((null === ($context["user_thumbnail"] ?? null))) {
// line 51
echo " ";
echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, ($context["user"] ?? null), "getUserInitials", [0 => ($context["enable_anonymization"] ?? null)], "method", false, false, false, 51), "html", null, true);
echo "
";
}
// line 53
echo "</span>
";
// line 55
if ((($context["with_link"] ?? null) && !($context["anonymized"] ?? null))) {
// line 56
echo " ";
if (($context["display_login"] ?? null)) {
// line 57
echo " <span class=\"ms-2\">";
echo twig_escape_filter($this->env, (($__internal_compile_0 = twig_get_attribute($this->env, $this->source, ($context["user"] ?? null), "fields", [], "any", false, false, false, 57)) && is_array($__internal_compile_0) || $__internal_compile_0 instanceof ArrayAccess ? ($__internal_compile_0["name"] ?? null) : null), "html", null, true);
echo "</span>
";
}
// line 59
echo "
</a>
";
}
}
public function getTemplateName()
{
return "components/user/picture.html.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 109 => 59, 103 => 57, 100 => 56, 98 => 55, 94 => 53, 88 => 51, 86 => 50, 76 => 49, 72 => 48, 69 => 47, 63 => 45, 61 => 44, 58 => 43, 54 => 41, 52 => 40, 50 => 39, 48 => 38, 46 => 37, 44 => 36, 42 => 35, 40 => 34, 37 => 33,);
}
public function getSourceContext()
{
return new Source("{#
# ---------------------------------------------------------------------
#
# 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/>.
#
# ---------------------------------------------------------------------
#}
{% set enable_anonymization = enable_anonymization ?? false %}
{% set avatar_size = avatar_size ?? \"avatar-md\" %}
{% set anonymized = enable_anonymization and entity_config('anonymize_support_agents', session('glpiactive_entity')) != constant('Entity::ANONYMIZE_DISABLED') %}
{% set user = get_item('User', users_id) %}
{% set with_link = with_link ?? true %}
{% set user_thumbnail = user.getThumbnailPicturePath(enable_anonymization) %}
{% if user_thumbnail == null and not entity_config('display_users_initials', session('glpiactive_entity')) %}
{% set user_thumbnail = user.getPicturePath(enable_anonymization) %}
{% endif %}
{% if with_link and not anonymized %}
<a href=\"{{ user.getLinkURL() }}\" class=\"d-flex align-items-center\">
{% endif %}
<span class=\"avatar {{ avatar_size }} rounded\"
style=\"{% if user_thumbnail is not null %}background-image: url({{ user_thumbnail }}); {% endif %}background-color: {{ user.getUserInitialsBgColor() }}\">
{% if user_thumbnail is null %}
{{ user.getUserInitials(enable_anonymization) }}
{% endif %}
</span>
{% if with_link and not anonymized %}
{% if display_login %}
<span class=\"ms-2\">{{ user.fields['name'] }}</span>
{% endif %}
</a>
{% endif %}
", "components/user/picture.html.twig", "/home/escuelai/public_html/it/templates/components/user/picture.html.twig");
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists