$cours->deplacer_element($coursCateg, $dataCours, $member);
            }
            $error = new error();
            $error->add_error(translate('cours_move_okay'), ERROR_PAGE, __FILE__, __LINE__);
        }
        break;
    case 'afficherTutoriel':
        $idTutoriel = intval($_GET['idTutoriel']);
        $cours = new Cours($idTutoriel);
        break;
}
tpl_begin();
switch ($action) {
    case 'voirArborescence':
        $cours = new Cours();
        $cours->racine()->elements_enfants_arborescence();
        break;
    case 'afficherTutoriel':
        $cours->affiche_cours();
        break;
    case 'voirListeTous':
        $dataCours = $cours->recupere_cours();
        ?>
		<table>
			<tr>
				<th>Nom</th>
				<th>Actions</th>
			</tr>
		<?php 
        foreach ($dataCours as $v) {
            echo '<tr><td>';