From cf21b871ecba2d4a162aa9b545eb4d40646f51eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Fri, 24 Sep 2010 19:44:44 +0200 Subject: [PATCH] =?UTF-8?q?Horaires=20dans=20la=20section=20=C3=A9quipes.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __cms__/code/modules/equipes/equipes-index.php | 3 +++ __cms__/code/modules/horaires/horaires-index.php | 13 +++++++++++++ 2 files changed, 16 insertions(+) diff --git a/__cms__/code/modules/equipes/equipes-index.php b/__cms__/code/modules/equipes/equipes-index.php index 46fe3c3..825979d 100644 --- a/__cms__/code/modules/equipes/equipes-index.php +++ b/__cms__/code/modules/equipes/equipes-index.php @@ -31,6 +31,9 @@ class ÉquipesIndex { if ($vue == "normal") { $ret = ''; + $ret .= '

Horaires

'; + $ret .= Modules::vue(new Chemin("/horaires"), 'miniature')->contenu; + if (Permissions::vérifier_permission($chemin, "set_prop", Authentification::get_utilisateur())) { $ret .= '
'; $ret .= '

'; diff --git a/__cms__/code/modules/horaires/horaires-index.php b/__cms__/code/modules/horaires/horaires-index.php index fb120d5..f66d5f6 100644 --- a/__cms__/code/modules/horaires/horaires-index.php +++ b/__cms__/code/modules/horaires/horaires-index.php @@ -66,6 +66,19 @@ class HorairesIndex { $ret .= ''; } + foreach (stockage::liste_enfants($chemin) as $k) { + $ret .= '
  • ' . Modules::vue($k)->contenu . '
  • '; + } + + $ret .= ''; + + return new Page($chemin, $ret, Stockage::get_prop($chemin, "titre")); + } else if ($vue == "miniature") { + $ret = ''; + + $ret .= '
    '; + $ret .= '
      '; + foreach (stockage::liste_enfants($chemin) as $k) { $ret .= '
    • ' . Modules::vue($k)->contenu . '
    • '; }