Example #1
0
   | along with AdminBot; if not, write to the Free Software Foundation, |
   | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA       |
   |                                                                     |
   +---------------------------------------------------------------------+
   | Authors: Li0n  <*****@*****.**>                               |
   |          RV <*****@*****.**>                                    |
   |          Gougou                                                     |
   +---------------------------------------------------------------------+
*/
if (eregi("block_menu.php", $_SERVER['PHP_SELF'])) {
    die("You cannot open this page directly");
}
//HTML EDITED
global $config, $s_theme, $s_joueur, $mods, $grade;
global $strGeneral, $strAccueil, $strPlanSalle, $strNews, $strInscriptions, $strAc_cmdmenu, $custheme, $strPresentation, $strReglement, $strJoueurs, $strEquipes, $strTournois, $strServeurs, $strSponsors, $strPartenaires, $strForum, $strIrc, $strDownloads, $strLiens, $strLivreDor, $strContact, $strSInscrire, $strLadder, $strGalerie;
theme_openblock("<img src=\"themes/{$s_theme}/images/icon_menu.gif\" align=\"absmiddle\" alt=\"menu\"> {$strGeneral}");
echo '<table width="100%">';
echo '<tr><td class="blockjtab"><div><dl>';
echo "<li class=\"lib\"><a href=\"?page=accueil\">{$strAccueil}</a></li>";
if ($config['news']) {
    echo "<li class=\"lib\"><a href=\"?page=news\"><span style\"text-weight:bold\">{$strNews}</span></a></li>";
}
if ($config['forum']) {
    echo "<li class=\"lib\"><a href=\"?page=forum/\">{$strForum}</a></li>";
}
if ($config['inscription_joueur'] && !$s_joueur) {
    $nbinscrits = nb_joueurs_inscrit();
    $nbplaces = $config['places'];
    if ($nbinscrits < $nbplaces) {
        echo "<li class=\"lir\"><a href=\"?page=joueurs&amp;op=inscription\"><span style\"color:red;text-weight:bold\">{$strSInscrire}</span></a></li>";
    }
Example #2
0
   | along with AdminBot; if not, write to the Free Software Foundation, |
   | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA       |
   |                                                                     |
   +---------------------------------------------------------------------+
   | Authors: Li0n  <*****@*****.**>                               |
   |          RV <*****@*****.**>                                    |
   |          Gougou                                                     |
   +---------------------------------------------------------------------+
*/
if (eregi("block_joueur.php", $_SERVER['PHP_SELF'])) {
    die("You cannot open this page directly");
}
global $config, $s_joueur, $s_theme, $db, $dbprefix;
global $strJoueur, $strPseudo, $strSeRappeler, $strPassword, $strConnecter, $strPasConnecte, $strConnexion, $strConnecte, $strDeconnexion, $strMaFiche, $strMonEquipe, $strMesEquipes, $strMessagerie, $strLireMessage, $strEcrireMessage, $strMessageNouveau, $strSInscrire, $strOubliPass, $strCreerEquipe, $strRejoindreUneEquipe;
/*** menu Joueur ***/
theme_openblock("<img src=\"themes/{$s_theme}/images/icon_joueur.gif\" align=\"absmiddle\" alt=\"joueur\"> {$strJoueur} ");
if (empty($s_joueur)) {
    if (isset($_COOKIE['data'])) {
        //$data_banned = $_COOKIE['data'];
        //if ($data_banned="banned") {js_goto("?page=banned.php");}
        $data_info = $_COOKIE['data'];
        $data_info = base64_decode($data_info);
        $user_data = explode('|', $data_info);
        $checked = 'checked';
        /*** transmition des variables via donn&eacute;e du cookie ***/
        $pseudo = $user_data[0];
        $passwd = $user_data[1];
        /*
        /*** login ***
        $db->select("id,langue,admin");
        $db->from("${dbprefix}joueurs");
  | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA       |
  |                                                                     |
  +---------------------------------------------------------------------+
  | Authors: Li0n  <*****@*****.**>                               |
  |          RV <*****@*****.**>                                    |
  |          Go???ugou                                                     |
  +---------------------------------------------------------------------+
  +---------------------------------------------------------------------+
  | Page Author : Gectou4  <*****@*****.**>              |
  +---------------------------------------------------------------------+
*/
if (eregi("block_10player.php", $_SERVER['PHP_SELF'])) {
    die("You cannot open this page directly");
}
// HTML EDITED
theme_openblock("<img src=\"themes/{$s_theme}/images/player.gif\" align=\"absmiddle\" alt=\":)\"> {$strLastregistred}");
if (!isset($start) || !is_numeric($start)) {
    $start = 0;
}
$db->select("*");
$db->from("{$dbprefix}joueurs");
$nb_maxx = 10;
$db->where("etat = 'I'");
$db->order_by("id DESC LIMIT {$start},{$nb_maxx}");
$res = $db->exec();
echo "<ul>";
if ($db->num_rows($res) == 0) {
    echo "<li class=\"lib\">{$strPasDeJoueur}<br>";
} else {
    while ($ps = $db->fetch($res)) {
        $ps->pseudo = stripslashes($ps->pseudo);
Example #4
0
   | along with AdminBot; if not, write to the Free Software Foundation, |
   | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA       |
   |                                                                     |
   +---------------------------------------------------------------------+
   | Authors: Li0n  <*****@*****.**>                               |
   |          RV <*****@*****.**>                                    |
   |          Gougou                                                     |
   +---------------------------------------------------------------------+
*/
if (eregi("block_stats.php", $_SERVER['PHP_SELF'])) {
    die("You cannot open this page directly");
}
global $config, $s_joueur, $s_theme;
global $strStatistiques, $strJoueurs, $strInscrits, $strTournois, $strNews, $strLiens, $strDownloads, $strPagesVues;
global $compteur;
theme_openblock("<img src=\"themes/{$s_theme}/images/icon_stats.gif\" align=\"absmiddle\" alt=\"stats\"> {$strStatistiques}");
$nbnews = nb_news();
$nbdownloads = nb_downloads();
$nbliens = nb_liens();
$nbjoueurs = nb_joueurs();
$nbplaces = $config['places'];
$nbinscrits = nb_joueurs_inscrit();
$nbequipes = nb_equipes();
$nbtournois = nb_tournois();
echo "<dl><li class=\"lib\">{$strJoueurs} : {$nbjoueurs}</li>";
echo "<li class=\"lib\">{$strInscrits} : {$nbinscrits}/{$nbplaces}</li>";
affiche_bar($nbinscrits, $nbplaces, 100);
echo "<li class=\"lib\">{$strTournois} : {$nbtournois}</li>";
echo "<li class=\"lib\">{$strEquipes} : {$nbequipes}</li>";
if ($config['news']) {
    echo "<li class=\"lib\">{$strNews} : {$nbnews}</li>";
   |                                                                     |
   +---------------------------------------------------------------------+
   | Authors: Li0n  <*****@*****.**>                               |
   |          RV <*****@*****.**>                                    |
   |          Gougou                                                     |
   +---------------------------------------------------------------------+
*/
if (eregi("block_admin_tournois.php", $_SERVER['PHP_SELF'])) {
    die("You cannot open this page directly");
}
//HTML EDITED
global $config, $s_joueur, $s_theme, $s_tournois, $nom_tournois, $status_tournois, $type_tournois, $db, $dbprefix;
global $strAdmin, $strInscriptions, $strCloturerInscriptions, $strInscriptions, $strPoules, $strValiderPoules, $strMatchsPoules, $strTerminerPoules, $strTerminerTournois, $strHoraires, $strMaps, $strServeurs, $strFinales, $strValiderFinales, $strMatchsFinales, $strMatchsActifs, $strMatchsEnCours, $strAdminTournois;
global $strCloturerLesInscriptions, $strValiderLesPoules, $strTerminerLesPoules, $strValiderLesFinales, $strTerminerLeTournois, $grade;
if (($grade['a'] == 'a' || $grade['b'] == 'b' || $grade['t'] == 't' || admin_tournois($s_joueur, $s_tournois)) && $status_tournois != 'T' && $s_tournois) {
    theme_openblock("<img src=\"themes/{$s_theme}/images/icon_admintournois.gif\" align=\"absmiddle\" alt=\"admin\"> {$strAdmin}");
    echo '<a href="?page=tournois&amp;op=modify&amp;id=' . $s_tournois . '">';
    echo show_tournois($s_tournois, 1) . "</a><br />";
    echo "<ul><li class=\"lib\"><a href=\"?page=inscriptions&amp;op=admin\">{$strInscriptions}</a><br />";
    if ($status_tournois == "I") {
        echo "<br /><li class=\"lir\"><a href=\"javascript:cloturer_inscriptions('{$strCloturerLesInscriptions}')\">{$strCloturerInscriptions}</a><br />";
    } elseif ($status_tournois == "G") {
        echo "<li class=\"lib\"><a href=\"?page=poules&amp;op=admin\">{$strPoules}</a><br />";
        echo "<br /><li class=\"lir\"><a href=\"javascript:valider_poules('{$strValiderLesPoules}')\">{$strValiderPoules}</a><br />";
    } elseif ($status_tournois == "P") {
        echo "<li class=\"lib\"><a href=\"?page=matchs_poules&amp;op=admin\">{$strMatchsPoules}</a><br />";
        echo "<li class=\"lib\"><a href=\"?page=matchs_liste&amp;op=admin&amp;status=A\">{$strMatchsActifs}</a><br />";
        echo "<li class=\"lib\"><a href=\"?page=matchs_liste&amp;op=admin&amp;status=D\">{$strMatchsEnCours}</a><br />";
        if ($type_tournois == 'T') {
            echo "<br /><li class=\"lir\"><a href=\"javascript:terminer_poules('{$strTerminerLesPoules}')\">{$strTerminerPoules}</a><br />";
        } else {
Example #6
0
function theme_menu_right()
{
    global $mods;
    echo "<!-- Menu Droit[start] -------------------------------------------------->\n";
    echo '<td valign="top" align="center">';
    echo '<div id="menudiv_d">';
    echo '<table cellpadding="0" cellspacing="0" width="140" border="0"><tr><td valign="top">';
    //include("include/blocks/block_joueur.php");
    include "include/blocks/block_admin_tournois.php";
    //include("include/blocks/block_admin.php");
    // module des 10 dernière news à placer ou vous voulez ^^
    if ($mods['lastnews'] == 1) {
        include "include/blocks/block_10news.php";
    }
    include "include/blocks/block_partenaires.php";
    include "include/blocks/block_sponsors.php";
    global $config, $db, $dbprefix, $s_membre;
    if ($config['phpt_type'] != 'lan') {
        $sql = "SELECT * FROM {$dbprefix}menu WHERE titre!='' AND align='D' ORDER BY orde";
        $req = mysql_query($sql) or die('Erreur SQL !<br>' . $sql . '<br>' . mysql_error());
        while ($data = mysql_fetch_array($req)) {
            $titre = $data['titre'];
            theme_openblock("{$titre}");
            $sql2 = "SELECT * FROM {$dbprefix}page WHERE lien!='' AND nmenu='{$titre}' ORDER BY orde";
            $req2 = mysql_query($sql2) or die('Erreur SQL !<br>' . $sql2 . '<br>' . mysql_error());
            while ($data2 = mysql_fetch_array($req2)) {
                $rubrique = $data2['rubrique'];
                $lien = $data2['lien'];
                $npage = $data2['npage'];
                $id = $data2['id'];
                echo "<li class=\"lib\"><a href=\"?page=page&op=see&rubrique={$rubrique}&npage={$npage}&id={$id}\">{$lien}</a><br>";
            }
            theme_closeblock();
        }
    }
    echo '</td></tr></table>';
    echo '</div>';
    echo "<!-- Menu Droit [end] ---------------------------------------------------->\n";
    echo '</td>';
}
    $str_tournois = $strTournois;
    $status = '';
}
$db->select("id,status,reglement,information,dotation,stats");
$db->from("{$dbprefix}tournois");
if ($status == 'T') {
    $db->where("status = 'T'");
}
if ($status == 'E') {
    $db->where("status <> 'T'");
}
$db->order_by("{$dbprefix}tournois.nom");
$res = $db->exec();
if ($db->num_rows($res) != 0) {
    $t = 0;
    theme_openblock("<img src=\"themes/{$s_theme}/images/icon_tournois.gif\" align=\"absmiddle\" alt=\"tournois\"> {$str_tournois}");
    while ($tournois = $db->fetch($res)) {
        if ($s_tournois == $tournois->id) {
            //if($t!=0) echo '<hr width="95%">';
            echo show_tournois($tournois->id, 1);
            echo '<br>';
            echo '<hr width="95%">';
            //echo '<br><div style="margin-left:5px">';
            echo "<img src=\"themes/{$s_theme}/images/icon_status.gif\" align=absmiddle> <u>{$strStatus}</u>:<b> ";
            if ($status_tournois == 'I') {
                echo $strInscriptions;
            }
            if ($status_tournois == 'G') {
                echo $strGenerationPoules;
            }
            if ($status_tournois == 'P') {
   | along with AdminBot; if not, write to the Free Software Foundation, |
   | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA       |
   |                                                                     |
   +---------------------------------------------------------------------+
   | Authors: Li0n  <*****@*****.**>                               |
   |          RV <*****@*****.**>                                    |
   |          Gougou                                                     |
   +---------------------------------------------------------------------+
*/
if (eregi("block_partenaires.php", $_SERVER['PHP_SELF'])) {
    die("You cannot open this page directly");
}
global $db, $dbprefix, $config, $s_joueur, $s_theme, $strPartenaires, $strSuite;
if ($config['partenaires']) {
    $db->select("*");
    $db->from("{$dbprefix}partenaires");
    $db->order_by("rang LIMIT 5");
    $partenaires = $db->exec();
    if ($db->num_rows($partenaires) != 0) {
        theme_openblock("<img src=\"themes/{$s_theme}/images/icon_partenaires.gif\" align=\"absmiddle\" alt=\"partenaires\"> {$strPartenaires}");
        echo "<div align=\"center\">";
        while ($partenaire = $db->fetch($partenaires)) {
            echo '<img src="images/story-7px.gif" width="7" height="3" alt=""><br />';
            echo "<a target=\"_blank\" href=\"{$partenaire->url}\"><img src=\"images/partenaires/{$partenaire->image}\" title=\"{$partenaire->nom}\" border=\"0\" alt=\"{$partenaire->nom}\"></a><br />";
            echo '<img src="images/story-7px.gif" width="7" height="3" alt=""><br />';
        }
        echo "<a href=\"?page=partenaires\">{$strSuite}</a>";
        echo "</div>";
        theme_closeblock();
    }
}
Example #9
0
  | along with AdminBot; if not, write to the Free Software Foundation, |
  | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA       |
  |                                                                     |
  +---------------------------------------------------------------------+
  | Authors: Li0n  <*****@*****.**>                               |
  |          RV <*****@*****.**>                                    |
  |          Gougou                                                     |
  +---------------------------------------------------------------------+
  +---------------------------------------------------------------------+
  | Page Author : Gectou4  <*****@*****.**>              |
  +---------------------------------------------------------------------+
*/
if (eregi("block_10news.php", $_SERVER['PHP_SELF'])) {
    die("You cannot open this page directly");
}
theme_openblock("<img src=\"themes/{$s_theme}/images/news.gif\" align=\"absmiddle\" alt=\":)\"> {$strNews}");
global $db, $dbprefix, $s_theme;
if (empty($id)) {
    if (!isset($start) || !is_numeric($start)) {
        $start = 0;
    }
    $db->select("*");
    $db->from("{$dbprefix}news");
    $nb_maxx = 10;
    $db->order_by("id DESC LIMIT 10");
    $res = $db->exec();
    if ($db->num_rows($res) == 0) {
        echo "<li class=\"lib\">Pas de news...<br>";
    } else {
        while ($news = $db->fetch($res)) {
            $news->titre = stripslashes($news->titre);
   | You should have received a copy of the GNU General Public License   |
   | along with AdminBot; if not, write to the Free Software Foundation, |
   | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA       |
   |                                                                     |
   +---------------------------------------------------------------------+
   | Authors: Li0n  <*****@*****.**>                               |
   |          RV <*****@*****.**>                                    |
   |          Gougou                                                     |
   +---------------------------------------------------------------------+
*/
if (eregi("block_sponsors.php", $_SERVER['PHP_SELF'])) {
    die("You cannot open this page directly");
}
global $db, $dbprefix, $config, $s_joueur, $s_theme, $strSponsors;
if ($config['sponsors'] && nb_sponsors() != 0) {
    theme_openblock("<img src=\"themes/{$s_theme}/images/icon_sponsors.gif\" align=\"absmiddle\" alt=\"sponsors\"> {$strSponsors}");
    echo '<div align="center"><marquee onmouseout="this.start()" onmouseover="this.stop()" width="110" scrolldelay="40" scrollamount="1" height="160" direction="up" behavior="scroll">';
    $db->select("*");
    $db->from("{$dbprefix}sponsors");
    $db->order_by("rang");
    $sponsors = $db->exec();
    if ($db->num_rows($sponsors) != 0) {
        while ($sponsor = $db->fetch($sponsors)) {
            list($width, $height, $type, $attr) = @getimagesize("images/sponsors/{$sponsor->image}");
            if ($width > 100) {
                $width = "width=100";
            } else {
                $width = '';
            }
            echo "<a href=\"?page=sponsors&amp;id={$sponsor->id}\"><img border=\"0\" title=\"{$sponsor->nom}\" {$width} src=\"images/sponsors/{$sponsor->image}\" alt=\"\"></a><br /><br />";
        }
Example #11
0
   | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA       |
   |                                                                     |
   +---------------------------------------------------------------------+
   | Authors: Li0n  <*****@*****.**>                               |
   |          RV <*****@*****.**>                                    |
   |          Gougou                                                     |
   +---------------------------------------------------------------------+
   +---------------------------------------------------------------------+
   | Page Author : Gectou4  <*****@*****.**>              |
   +---------------------------------------------------------------------+
*/
if (eregi("block_dl10.php", $_SERVER['PHP_SELF'])) {
    die("You cannot open this page directly");
}
//HTML EDITED
theme_openblock("<img src=\"themes/{$s_theme}/images/load.gif\" align=\"absmiddle\" alt=\":)\"> {$strTop10dl}");
global $db, $dbprefix, $s_theme;
if (!isset($start) || !is_numeric($start)) {
    $start = 0;
}
$db->select("*");
$db->from("{$dbprefix}download");
$nb_maxx = 10;
$db->order_by("hits DESC LIMIT 10");
$res = $db->exec();
if ($db->num_rows($res) == 0) {
    echo "<ul><li class=\"lib\">Pas de Download</ul><br />";
} else {
    echo "<ul>";
    while ($dl = $db->fetch($res)) {
        $dl->name = stripslashes($dl->nom);
    $str_tournois = $strTournois;
    $status = '';
}
$db->select("id,status,reglement,information,dotation,stats");
$db->from("{$dbprefix}tournois");
if ($status == 'T') {
    $db->where("status = 'T'");
}
if ($status == 'E') {
    $db->where("status <> 'T'");
}
$db->order_by("{$dbprefix}tournois.nom");
$res = $db->exec();
if ($db->num_rows($res) != 0) {
    $t = 0;
    theme_openblock("{$str_tournois}");
    while ($tournois = $db->fetch($res)) {
        if ($s_tournois == $tournois->id) {
            //if($t!=0) echo '<hr width="95%">';
            echo show_tournois($tournois->id, 1);
            echo '<br />';
            echo '<hr width="95%">';
            //echo '<br /><div style="margin-left:5px">';
            echo "<img src=\"themes/{$s_theme}/images/icon_status.gif\" align=\"absmiddle\"> <u>{$strStatus}</u>:<span style=\"font-wight:bold;\"> ";
            if ($status_tournois == 'I') {
                echo $strInscriptions;
            }
            if ($status_tournois == 'G') {
                echo $strGenerationPoules;
            }
            if ($status_tournois == 'P') {
   | it under the terms of the GNU General Public License as published by|
   | the Free Software Foundation; either version 2 of the License, or   |
   | (at your option) any later version.                                 |
   |                                                                     |
   | phpTournois is distributed in the hope that it will be useful,      |
   | but WITHOUT ANY WARRANTY; without even the implied warranty of      |
   | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the       |
   | GNU General Public License for more details.                        |
   |                                                                     |
   | You should have received a copy of the GNU General Public License   |
   | along with AdminBot; if not, write to the Free Software Foundation, |
   | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA       |
   |                                                                     |
   +---------------------------------------------------------------------+
   | Authors: Li0n  <*****@*****.**>                               |
   |          RV <*****@*****.**>                                    |
   |          Gougou                                                     |
   +---------------------------------------------------------------------+
*/
if (eregi("block_shoutbox.php", $_SERVER['PHP_SELF'])) {
    die("You cannot open this page directly");
}
theme_openblock("SHOUTBOX");
?>
 <center><iframe frameborder="0" src="shoutbox.php" width="152" height="250" scrolling="yes">
<p align="center">Votre Naviguateur ne reconnait pas les Frames ,Desol&eacute; !</p>
</iframe></center> <?php 
theme_closeblock();
?>

   |                                                                     |
   | You should have received a copy of the GNU General Public License   |
   | along with AdminBot; if not, write to the Free Software Foundation, |
   | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA       |
   |                                                                     |
   +---------------------------------------------------------------------+
   | Authors: Li0n  <*****@*****.**>                               |
   |          RV <*****@*****.**>                                    |
   |          Gougou                                                     |
   +---------------------------------------------------------------------+
*/
if (eregi("block_donation.php", $_SERVER['PHP_SELF'])) {
    die("You cannot open this page directly");
}
global $strDonation, $s_theme, $strPaypal;
theme_openblock("<img src=\"themes/{$s_theme}/images/icon_donation.gif\" align=\"absmiddle\" alt=\"donation\"> {$strDonation}");
?>

<table width="120" align="center">
<tr>
	<td align="center">
		<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
		<input type="hidden" name="cmd" value="_s-xclick">
		<input type="image" src="https://www.paypal.com/fr_FR/i/btn/x-click-but04.gif" border="0" name="submit" alt="Effectuez vos paiements via PayPal : une solution rapide, gratuite et sécurisée !">
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----
">
	</td>
</tr>
<tr>
	<td align="center" class="text2">support the modder, or :</td>
</tr>