78 lines
3.6 KiB
Twig
78 lines
3.6 KiB
Twig
|
{% set theme = app.session.get('theme') %}
|
||
|
{% if theme is not empty %}
|
||
|
{{ include('@Theme/'~theme~'/function.html.twig') }}
|
||
|
{% endif %}
|
||
|
|
||
|
{% import "@CadolesPortal/Pagewidget/constants.twig" as constants %}
|
||
|
|
||
|
{% set stylewidget = constants.mystylewidget(entity) %}
|
||
|
{% set stylewidgetmenu = constants.mystylewidgetmenu(entity) %}
|
||
|
{% set stylewidgetheader = constants.mystylewidgetheader(entity) %}
|
||
|
{% set stylewidgetbody = constants.mystylewidgetbody(entity) %}
|
||
|
{% set stylewidgetbodyframe = constants.mystylewidgetbodyframe(entity) %}
|
||
|
{% set stylewidgetbodyimage = constants.mystylewidgetbodyimage(entity) %}
|
||
|
|
||
|
{% set color = app.session.get('color') %}
|
||
|
{% set colorbodyback = entity.colorbodyback %}
|
||
|
{% if colorbodyback is null %}
|
||
|
{% set colorbodyback = color['main'] %}
|
||
|
{% endif %}
|
||
|
|
||
|
{% set colorbodyfont = entity.colorbodyfont %}
|
||
|
{% if colorbodyfont is null %}
|
||
|
{% set colorbodyfont = color['fontcolorhover'] %}
|
||
|
{% endif %}
|
||
|
|
||
|
{%if mini %}
|
||
|
<div class="widget widget-mini widget-frame" data-id="{{ entity.id }}" loc="{{ entity.loc }}">
|
||
|
<div class="widgetheader">
|
||
|
<a style="cursor:pointer" onClick="bigWidget({{entity.id}})">
|
||
|
{% if entity.icon %}
|
||
|
<img src="/{{ alias }}/{{ entity.icon.label }}" class="logo" title="{{ entity.name }}"/>
|
||
|
{% else %}
|
||
|
<img src="/{{ alias }}/uploads/icon/icon_pin.png" class="logo" title="{{ entity.name }}"/>
|
||
|
{% endif %}
|
||
|
</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% else %}
|
||
|
<div class="widget {%if entity.border %} widget-bordered {%else%} widget-notbordered {%endif%} widget-frame" data-id="{{ entity.id }}" loc="{{ entity.loc }}" style="{{ stylewidget }}" height="{{ entity.height }}px">
|
||
|
|
||
|
<div class="widgetmenu">
|
||
|
{% if canupdate %}
|
||
|
<i class="fa fa-trash fa-fw" title="Supprimer le Widget" onClick="delWidget({{ entity.id }})" style="{{ stylewidgetmenu }}"></i>
|
||
|
<i class="fa fa-file fa-fw" title="Modifier le Widget" onClick="modWidget({{ entity.id }})" style="{{ stylewidgetmenu }}"></i>
|
||
|
{% endif %}
|
||
|
|
||
|
{% if look=="list" %}
|
||
|
<i class="glyphicon glyphicon-resize-small" title="Réduire le Widget" onClick="smallWidget({{ entity.id }})" style="{{ stylewidgetmenu }}"></i>
|
||
|
{% else %}
|
||
|
<i class="glyphicon glyphicon-resize-full" title="Agrandir le Widget" onClick="bigWidget({{ entity.id }})" style="{{ stylewidgetmenu }}"></i>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
|
||
|
|
||
|
|
||
|
{% if onheader %}
|
||
|
<div class="widgetheader" style="{{ stylewidgetbodyimage }}">
|
||
|
<iframe src="{{ path(tool,{'colorbodyback':colorbodyback,'colorbodyfont':colorbodyfont}) }}" style="margin-top:30px; {{ stylewidgetbodyframe }}" class="{% if entity.autoajust %}frameajust {% endif %}"></iframe>
|
||
|
</div>
|
||
|
{% else %}
|
||
|
<div class="widgetheader" style="{{ stylewidgetheader }}">
|
||
|
{% if entity.icon %}
|
||
|
<img src="/{{ alias }}/{{ entity.icon.label }}" class="logo"/>
|
||
|
{% else %}
|
||
|
<img src="/{{ alias }}/uploads/icon/icon_pin.png" class="logo"/>
|
||
|
{% endif %}
|
||
|
<span class="title">{{ entity.name }}</span>
|
||
|
</div>
|
||
|
|
||
|
<div class="widgetbody" style="{{ stylewidgetbody }}">
|
||
|
<iframe id="frame-{{directory}}" src="{{ path(tool) }}" data-color="#{{colorbodyfont}}" style="{{ stylewidgetbodyframe }}" class="{% if not entity.autoajust %}notframeajust {% endif %}"></iframe>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
|
||
|
|