07/09/2010, 10:38:23
Bonjour,
je suis en train de réécrire le code d'une applic pour la modularisé sous CMSMS V1.6.7
Lors du développement de la partie d'administration aucun des onglets ne peuvent être activé. Voici mon code pour le fichier action.defaultadmin.php
Les différent onglet sont bien affiché mais les écho sont les un en dessous des autres et le premier n'est même pas visible.
J'ai pourtant ce même genre de code dans d'autre module qui fonctionne très bien.
Merci de votre aide.
je suis en train de réécrire le code d'une applic pour la modularisé sous CMSMS V1.6.7
Lors du développement de la partie d'administration aucun des onglets ne peuvent être activé. Voici mon code pour le fichier action.defaultadmin.php
Les différent onglet sont bien affiché mais les écho sont les un en dessous des autres et le premier n'est même pas visible.
J'ai pourtant ce même genre de code dans d'autre module qui fonctionne très bien.
Merci de votre aide.
Code :
<?php
if (!isset($gCms)) exit;
if (!empty($params['active_tab']))
$tab = $params['active_tab'];
else
$tab = 'maillot';
echo $this->StartTabHeaders();
echo $this->SetTabHeader('maillot', $this->Lang('admin_tab_mail'), 'maillot' == $tab ? true : false);
echo $this->SetTabHeader('gabaritList', $this->Lang('admin_tab_gabarit_list'), 'gabaritList' == $tab ? true : false);
echo $this->SetTabHeader('gabaritAdd', $this->Lang('admin_tab_gabarit_add'), 'gabaritAdd' == $tab ? true : false);
echo $this->SetTabHeader('import', $this->Lang('admin_tab_import'), 'import' == $tab ? true : false);
echo $this->SetTabHeader('preference_lot', $this->Lang('admin_tab_preference'), 'preference_lot' == $tab ? true : false);
echo $this->EndTabHeaders();
echo $this->StartTabContent();
echo $this->StartTab('maillot');
echo 'Gabarit mail';
echo $this->EndTab();
echo $this->StartTab('gabaritList');
echo 'list';
//include 'function.admin_gabaritList.php';
echo $this->EndTab();
echo $this->StartTab('gabaritAdd');
echo 'add';
//require_once 'function.admin_gabaritAdd.php';
echo $this->EndTab();
echo $this->StartTab('import');
echo 'import';
//require_once 'function.admin_import.php';
echo $this->EndTab();
echo $this->StartTab('preference_lot');
echo 'pref';
//require_once 'function.admin_preference.php';
echo $this->EndTab();
echo $this->EndTabContent();
?>