// // 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 // ////////////////////////////////////////////////////////////////////////////////////////////////////// // Accueil // v0.2.0 $requiredFiles = array("ecrits","membres","fonctions"); include_once("head.php"); if(!empty($err)) $page = "

".stripslashes(urldecode($err))."

"; $liste = $ecrits->liste_derniers($journal->courant[id],10); if(count($liste) > 0 && $liste) { $page.= '

Derniers écrits

'; } $infos = $journal->all_infos($journal->courant['id']); $page.= '
'; $quotas = $membres->get_quotas($mem->infos['id']); if($quotas['journaux'] > 1) $page.= '

Vous possédez '.$quotas['journaux'].' journaux. Sélectionner un autre journal.

'; if((($mem->groupe['nb_journaux'] > 1) && ($quotas['journaux'] < $mem->groupe['nb_journaux'])) || ($mem->groupe['nb_journaux'] < 0)) $page.= '

Votre quota vous permet de créer encore '. (($mem->groupe['nb_journaux'] < 0) ? 'un nombre infini de' : ($mem->groupe['nb_journaux'] - $quotas['journaux'])). ' journaux. Créer un nouveau journal.

'; $page.= '
'; page("Espace écriture",$page); ?>