{# # This file is part of MedShakeEHR. # # Copyright (c) 2017 # fr33z00 # 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 : modules # # @author Bertrand Boutillier # @author fr33z00 #} {% extends "page.html.twig" %} {% import "macroForm.html.twig" as f %} {% block title %}{{ config.designAppName }} : modules{% endblock %} {% block head %} {{ parent() }} {% endblock %} {% block bodyTagAdd %}class="uploader"{% endblock %} {% block body %}

Modules installés

{% for m in page.modules %} {% endfor %}
Nom Nom court Version
{% if page.modulesInfosGen[m.name]['nom'] %} {{ page.modulesInfosGen[m.name]['nom'] }} {% endif %} {{ m.name }} {{ m.version }}
{% if page.modulesInfosGen[m.name]['nom'] %}
Informations sur ce module
    {% if page.modulesInfosGen[m.name]['nom'] %}
  • {{ page.modulesInfosGen[m.name]['nom'] }} {% if page.modulesInfosGen[m.name]['description'] is not empty %}

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

    {% endif %}
  • {% endif %} {% if page.modulesInfosGen[m.name]['auteurs'] is not empty %}
  • Auteur{% if page.modulesInfosGen[m.name]['auteurs']|length > 1 %}s{% endif %} : {% for auteur, lien in page.modulesInfosGen[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.modulesInfosGen[m.name]['licence'] %}
  • Licence : {{ page.modulesInfosGen[m.name]['licence'] }}
  • {% endif %} {% if page.modulesInfosGen[m.name]['documentation'] or page.modulesInfosGen[m.name]['sources'] %}
  • {% if page.modulesInfosGen[m.name]['documentation'] %} Documentation {% endif %} {% if page.modulesInfosGen[m.name]['documentation'] and page.modulesInfosGen[m.name]['sources'] %} - {% endif %} {% if page.modulesInfosGen[m.name]['sources'] %} Code source {% endif %}
  • {% endif %}
{% endif %}
Paramètres de configuration spécifiques au module {{ m.name }}
{% if page.modulesConfig[m.name] | length > 0 %} {% for c in page.modulesConfig[m.name] %} {% endfor %}
nom catégorie valeur
{{ c.name }} {{ c.cat }} {{ c.value }}
{% else %}

Pas de paramètres spécifiques.

{% endif %} Exporter le module en SQL

Installer un nouveau module ou une mise à jour

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

Ceci aura pour effet de mettre la base de données en état de maintenance, ce qui empêchera tout utilisateur non administrateur d'accéder à MedShakeEHR, jusqu'à ce que vous vous reloguiez pour terminer les mises à jour

{% endblock %}