{# # This file is part of MedShakeEHR. # # Copyright (c) 2020 # Bertrand Boutillier # http://www.medshake.net # # MedShakeEHR 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 # any later version. # # MedShakeEHR 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 MedShakeEHR. If not, see . #/ /## # Template > Config : plugins # # @author Bertrand Boutillier #} {% extends "page.html.twig" %} {% import "macroForm.html.twig" as f %} {% block title %}{{ config.designAppName }} : plugins{% endblock %} {% block head %} {{ parent() }} {% endblock %} {% block bodyTagAdd %}class="uploaderPlugin"{% endblock %} {% block body %}

Plugins installés

{% if page.plugins|length() > 0 %} {% for m in page.plugins %} {% endfor %}
Nom Nom court Version
{% if page.pluginsInfosGen[m.name]['nom'] %} {{ page.pluginsInfosGen[m.name]['nom'] }} {% endif %} {{ m.name }} {{ m.version }}
{% if page.pluginsInfosGen[m.name]['nom'] %}
Informations sur ce plugin
    {% if page.pluginsInfosGen[m.name]['nom'] %}
  • {{ page.pluginsInfosGen[m.name]['nom'] }} {% if page.pluginsInfosGen[m.name]['description'] is not empty %}

    {{ page.pluginsInfosGen[m.name]['description'] }}

    {% endif %}
  • {% endif %} {% if page.pluginsInfosGen[m.name]['auteurs'] is not empty %}
  • Auteur{% if page.pluginsInfosGen[m.name]['auteurs']|length > 1 %}s{% endif %} : {% for auteur, lien in page.pluginsInfosGen[m.name]['auteurs'] %} {% if lien is not empty %} {{ auteur }} {% else %} {{ auteur }} {% endif %} {% if loop.index0 >= 0 and loop.revindex0 > 0 %} - {% endif %} {% endfor %}
  • {% endif %} {% if page.pluginsInfosGen[m.name]['licence'] %}
  • Licence : {{ page.pluginsInfosGen[m.name]['licence'] }}
  • {% endif %} {% if page.pluginsInfosGen[m.name]['documentation'] or page.pluginsInfosGen[m.name]['sources'] %}
  • {% if page.pluginsInfosGen[m.name]['documentation'] %} Documentation {% endif %} {% if page.pluginsInfosGen[m.name]['documentation'] and page.pluginsInfosGen[m.name]['sources'] %} - {% endif %} {% if page.pluginsInfosGen[m.name]['sources'] %} Code source {% endif %}
  • {% endif %}
{% endif %}
{% else %} {% endif %}

Installer un nouveau plugin ou une mise à jour de plugin

Glissez-déposez le fichier zip d'un nouveau plugin MedShakeEHR ou d'une mise à jour sur cette page pour l'installer.

{% endblock %}