// // This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike License. // // To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/1.0/ // // or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. // // Francais (brouillon): http://creativecommons.org/projects/international/fr/translated-license // ////////////////////////////////////////////////////////////////////////////////////////////////////// // Fiche d'un membre // v0.1.2 $loadClasses = array('membres', 'journal', 'groupes', 'ecrits'); include_once('head.php'); if(!empty($_GET['setban'])) { $membres->set_ban($_GET['id'], 1); header("location: m_voir.php?id=".$_GET['id']); exit; } $m = $membres->get($_GET["id"]); $grp = $groupes->get($m["groupe"]); $quotas = $membres->get_quotas($m["id"]); $f = array_flip($ecrits->fuseaux); $fuseau = $f[$m["fuseau"]]; $page = '

Information

Quotas

'; if(!empty($quotas['journaux'])) { $page.= '

Journaux

"; } page("Membre: ".$m["pseudo"],$page); ?>