Example #1
0
function init_bug($bug)
{
    // Si l'on vient de remplir le formulaire d'ajout ou d"édition
    // d'un bug, on met à jour la bdd
    if ($bug == "edit" && userIsGuilde()) {
        editDbBug();
        // editDbBug ne prend pas de parametre
        // Suppression d'un bug
    } elseif (is_numeric($bug) && $_REQUEST[action] == "del" && userIsGuilde()) {
        deleteDbBug($bug);
    }
    // On affiche le formulaire si l'on connait l'id du bug
    // ou que l'on veut en créer un nouveau
    if (is_numeric($bug) || $bug == "new") {
        afficher_titre_tableau("Bug Track des outils " . RELAISMAGO, "");
        afficherFicheBug($bug);
        // Sinon, on affiche la liste des bugs
    } else {
        $text = "<i>Vous venez de découvrir un dysfonctionnement dans les outils, ou vous voulez voir ";
        $text .= "une nouvelle fonctionnalité apparaître ? Cet outil est pour vous !</i><br><br>";
        if (userIsGuilde()) {
            $text .= "<input type='button' class='mh_form_submit' ";
            $text .= "onClick=\"Javascript:document.location.href='bugs.php?bug=new'\" value=\"Ajouter un bug ou une demande d'amélioration\">";
        } else {
            $text .= "L'ajout de Bug ou Souhait est uniquement accessible par les " . RELAISMAGO . " authentifiés pour l'instant.<br>";
        }
        afficher_titre_tableau("Bug Track " . RELAISMAGO . " : Les Bugs ou Souhaits dans les outils", $text);
        afficherListeBugs();
    }
}
Example #2
0
function initSource()
{
    echo "<br><br><br><br>";
    afficher_titre_tableau('Les sources des outils ' . RELAISMAGO);
    $text = "Les outils " . RELAISMAGO . " sont développés sous licence GPL.<br/><br/>";
    $text .= "Vous pouvez obtenir les sources sur  <br/>";
    $text .= "<a href='https://github.com/relaismago/outils'>https://github.com/relaismago/outils</a>";
    $text .= "<br/><br/>Une documentation d'installation est disponible <a href='/documentation/documentation.pdf'>Ici</a>";
    $text .= " <br/><br/> Pour plus d'informations, contactez glupglup (51166).";
    afficher_contenu_tableau($text);
}
Example #3
0
function init()
{
    afficher_titre_tableau("Le Retour des Monstres<br>5° au 20° jour du mois du Ver du 4e cycle après Ragnarok");
    ?>
	<center><img src="http://www.pipeshow.net/RM/vpc_speke.gif" border="0"><img src="http://www.pipeshow.net/RM/vpc_bokuto.gif" border="0"><img src="http://www.pipeshow.net/RM/vpc_doost.gif" border="0"><img src="http://www.pipeshow.net/RM/vpc_finlard.gif" border="0"><img src="http://www.pipeshow.net/RM/vpc_grosse-bouse.gif" border="0"><img src="http://www.pipeshow.net/RM/vpc_patate.gif" border="0"></center>
	<?php 
    tutorial_haut();
    echo "<br><br>";
    hist_monstres_1();
    hist_monstres_2();
    hist_monstres_3();
    hist_monstres_4();
    hist_monstres_5();
    hist_monstres_6();
    hist_monstres_7();
    hist_monstres_8();
    hist_monstres_9();
    hist_monstres_10();
    hist_monstres_11();
    hist_monstres_12();
    hist_monstres_13();
    hist_monstres_14();
    hist_monstres_15();
    hist_monstres_16();
    hist_monstres_17();
    hist_monstres_18();
    echo "<img src='http://www.pipeshow.net/RM/Doost_aunaturel.jpg'>";
    hist_monstres_19();
    hist_monstres_20();
    hist_monstres_21();
    hist_monstres_22();
    hist_monstres_23();
    hist_monstres_24();
    hist_monstres_25();
    hist_monstres_26();
    hist_monstres_27();
    hist_monstres_28();
    hist_monstres_29();
    hist_monstres_30();
    hist_monstres_31();
    hist_monstres_32();
    hist_monstres_33();
    hist_monstres_34();
    hist_monstres_35();
    hist_monstres_36();
    hist_monstres_37();
    hist_monstres_38();
    hist_monstres_39();
    hist_monstres_40();
    echo "<br><br>";
    echo "<br><br>";
    tutorial_bas();
}
Example #4
0
function init()
{
    afficher_titre_tableau("Le Minotien", "<br/>Mois de la Saison du Hum du 10e cycle après Ragnarok");
    tutorial_haut();
    echo "<br/><br/>";
    hist_minotien_Rogen_1();
    hist_minotien_Mmago_1();
    hist_minotien_Kikraam_1();
    hist_minotien_Draz_1();
    hist_minotien_Rogen_2();
    echo "<br/><br/>";
    echo "<br/><br/>";
    tutorial_bas();
}
Example #5
0
function init_loterie()
{
    $img = "<img src='/images/loterie.jpg'>";
    //afficher_titre_tableau("$img",$text);
    afficher_titre_tableau($img);
    $loteries = new loteries();
    $id_loterie = $loteries->get_last_id_loterie();
    $loterie_participant = new loterie_participant($_SESSION[AuthTroll], $id_loterie);
    $id_troll = $_SESSION[AuthTroll];
    if ($_SESSION[admin] == "authenticated" && is_numeric($_GET[id_troll])) {
        $id_troll = $_GET[id_troll];
    }
    if ($_GET[admin] == "liste") {
        loterie_admin_liste();
    } elseif ($_POST[admin_post] == "enregistre") {
        loterie_admin_enregistre($_REQUEST[id_loterie]);
    } elseif ($_GET[admin] == "fiche") {
        loterie_admin_fiche($_REQUEST[id_loterie]);
    } elseif ($_GET[admin] == "cloturer") {
        loterie_admin_cloturer($_REQUEST[id_loterie]);
    } elseif ($_GET[admin] == "encours") {
        loterie_admin_encours($_REQUEST[id_loterie]);
    } elseif ($_POST[gain] == "enregistre") {
        loterie_interface_gain_enregistre($id_troll, $_POST[gain_num_loterie]);
    } elseif ($_GET[gain] == "liste") {
        loterie_interface_gain_liste($id_troll);
    } elseif ($_GET[gain] == "fiche") {
        loterie_interface_gain_fiche($id_troll, $_GET[id_loterie]);
    } elseif ($_GET[gain] == "liste") {
        loterie_interface_gain_liste($id_troll, $id_loterie);
    } elseif ($loterie_participant->is_participant()) {
        loterie_informations($id_loterie);
        loterie_participation_existante();
    } elseif (!$loterie_participant->can_participe()) {
        loterie_participation_refusee();
    } else {
        if ($_POST['actiondb'] == 'enregistre' && $_POST['participe'] == 'oui') {
            loterie_enregistre_participation($id_loterie);
        } else {
            loterie_informations($id_loterie);
            $loterie = new loterie($id_loterie);
            // on v&eacute;rifie que l'&eacute;tat &eacute;tait bien en_cours
            if ($loterie->get_etat() == 'en_cours') {
                loterie_nouvelle_participation($id_loterie);
            } else {
                afficher_contenu_tableau("La loterie n'est pas encore ouverte");
            }
        }
    }
}
Example #6
0
function init_firemago_tutorial()
{
    afficher_titre_tableau("Tutorial Firemago");
    tutorial_haut();
    tutorial_haut_bulle_gauche("http://www.pipeshow.net/RM/avatars/Domfada_avatar_bleu.gif", "Domfada (39684)");
    firemago_tutorial_msg_1();
    tutorial_haut_bas_gauche();
    echo "<br><br>";
    tutorial_haut_bulle_droit();
    firemago_tutorial_msg_2();
    tutorial_haut_bas_droit("http://www.pipeshow.net/RM/avatars/Glupglup_avatar_bleu.gif", "Glupglup (51166)");
    echo "<br><br>";
    echo "<br><br>";
    tutorial_bas();
}
Example #7
0
function init()
{
    afficher_titre_tableau("Le Complot", "<br>Mois de la Vouivre, du Gnu et du Scarabée du 3° cycle après Ragnarok");
    ?>
	<?php 
    tutorial_haut();
    echo "<br><br>";
    hist_complot_MohicTroll_1();
    hist_complot_MohicTroll_2();
    hist_complot_MohicTroll_3();
    hist_complot_MohicTroll_4();
    hist_complot_PeaceTroll_1();
    hist_complot_Vomi_1();
    hist_complot_Fuleng_1();
    hist_complot_SkrimOm_1();
    hist_complot_Obno_1();
    hist_complot_MohicTroll_5();
    hist_complot_SkrimOm_2();
    hist_complot_Vomi_2();
    hist_complot_HeSkrim_1();
    hist_complot_PeaceTroll_2();
    hist_complot_PeaceTroll_3();
    hist_complot_PeaceTroll_4();
    hist_complot_Heliacyn_1();
    hist_complot_PeaceTroll_5();
    hist_complot_PeaceTroll_6();
    hist_complot_MohicTroll_6();
    hist_complot_MohicTroll_7();
    hist_complot_SkrimOm_3();
    hist_complot_PeaceTroll_7();
    hist_complot_Silkette_1();
    hist_complot_Grabuge_1();
    hist_complot_Silkette_2();
    hist_complot_PeaceTroll_8();
    hist_complot_Heliacyn_2();
    hist_complot_PeaceTroll_9();
    hist_complot_MohicTroll_8();
    hist_complot_Grabuge_2();
    hist_complot_PeaceTroll_10();
    hist_complot_MohicTroll_9();
    hist_complot_PeaceTroll_11();
    hist_complot_Tackianosaurus();
    hist_complot_MohicTroll_10();
    hist_complot_Vomi_3();
    echo "<br><br>";
    echo "<br><br>";
    tutorial_bas();
}
Example #8
0
function initSource()
{
    echo "<br><br>";
    afficher_titre_tableau('Liens Pratiques');
    //$text .= "<a href=''></a><br>";
    $text .= "<b>Gowaps</b><br>";
    $text .= "<a href='http://www.mountyhall.com/mountyhall/Forum/display_topic_threads.php?ForumID=17&TopicID=44799&PagePosition=1#'>Gowapiers : Tarifs</a><br>";
    $text .= "<a href='http://www.mountyhall.com/mountyhall/Forum/display_topic_threads.php?ForumID=10&TopicID=34731&PagePosition=1'>FAQ Gowap</a><br>";
    $text .= "<a href='http://www.g-ros.com/~burk/Asile/gowap/'>Salle des archives Gowap (Asile)</a><br>";
    $text .= "<a href='http://thextrolls.free.fr/?page=gowapiers'>Gowapiers (X-Trolls)</a><br>";
    $text .= "<hr noshade>";
    $text .= "<b>Puits</b><br>";
    $text .= "<a href='http://trolls.game-host.org/mountyhall/lieux.php?search=position&orderBy=distance&posx=0&posy=0&posn=0&typeLieu=7'>Puits recencés chez les Bricol'Trolls</a><br>";
    $text .= "<hr noshade>";
    $text .= "<br><b>Hors-Jeux</b><br>";
    $text .= "<a href='http://games.mountyhall.com/mountyhall/ScriptPublic/'>Page d'aide des Scripts Publics</a><br>";
    afficher_contenu_tableau($text);
}
Example #9
0
function init()
{
    afficher_titre_tableau("L'assaut contre la Liche", "<img src='/images/laliche.gif'><br>15° jour de l'Hydre du 4° cycle après Ragnarok");
    ?>
	<center><img src="http://www.relaismago.com/images/Unclelobo.gif" border="0"></center>
	<?php 
    tutorial_haut();
    echo "<br><br>";
    hist_liche_Leroidelaclasse_1();
    hist_liche_MohicTroll_1();
    hist_liche_Kasseroll_1();
    hist_liche_Bodega_1();
    hist_liche_Garffon();
    hist_liche_Minos();
    hist_liche_Trulk_1();
    hist_liche_Peaceandtroll();
    hist_liche_Kelu_1();
    hist_liche_MohicTroll_2();
    hist_liche_Leroidelaclasse_2();
    hist_liche_Trulk_2();
    hist_liche_Kapootroll_1();
    hist_liche_Kasseroll_2();
    hist_liche_Jcpoupard();
    hist_liche_Kapootroll_2();
    hist_liche_Leroidelaclasse_3();
    hist_liche_Kasseroll_3();
    hist_liche_Argowar();
    hist_liche_Grognon();
    hist_liche_Kasseroll_4();
    hist_liche_Lobo();
    echo "<img src='http://www.relaismago.com/images/tueur.gif'>";
    hist_liche_Kelu_2();
    hist_liche_Kasseroll_5();
    hist_liche_Domfada();
    hist_liche_Bodega_2();
    echo "<img src='http://www.relaismago.com/images/stele.gif'>";
    echo "<br><br>";
    echo "<br><br>";
    tutorial_bas();
}
Example #10
0
function afficher_entete($isAdmin)
{
    afficher_titre_tableau("Renseignements Généraux");
}
Example #11
0
function init_stats_perso($id_troll)
{
    $t = new troll_vtt($id_troll);
    $text = "{$t->nom_troll} ({$t->id_troll})<br>";
    $text .= "<select name='id_troll' id='id_troll_rm'";
    $text .= "onChange=\"javascript:document.location.href='/vtt/stats_perso.php?id_troll=";
    $text .= "'+this.value+'";
    $text .= "';\">";
    $text .= afficher_listbox_troll_rm_select($id_troll, $no_not = "", "", false);
    $text .= "</select>";
    $img = "<img src='/images/narcissotron.jpg'>";
    afficher_titre_tableau("{$img}", $text);
    if ($t->pv == "") {
        $text = "{$t->nom_troll} ({$t->id_troll}) n'a jamais renseign&eacute; le VTT.";
        afficher_titre_tableau("Erreur", $text);
        die;
    }
    $s = new stats_vtt($t->race_troll, $t->niveau_troll);
    ?>
	<table width='100%'>
	<tr>
	<td>

	<table align='center' class='mh_tdborder'>
	<?php 
    dessine_pv($s, $t);
    ?>
	</table><br>

	</td>
	<td>

	<table align='center' class='mh_tdborder'>
	<?php 
    dessine_reg($s, $t);
    ?>
	</table><br>

	</td>
	</tr>

	<tr>
	<td>

	<table align='center' class='mh_tdborder'>
	<?php 
    dessine_dla($s, $t);
    ?>
	</table><br>

	</td>
	<td>

	<table align='center' class='mh_tdborder'>
	<?php 
    dessine_vue($s, $t);
    ?>
	</table><br>

	</td>
	</tr>
	<tr>
	<td>

	<table align='center' class='mh_tdborder'>
	<?php 
    dessine_att($s, $t);
    ?>
	</table><br>

	</td>
	<td>

	<table align='center' class='mh_tdborder'>
	<?php 
    dessine_esq($s, $t);
    ?>
	</table><br>

	</td>
	</tr>
	<tr>
	<td>

	<table align='center' class='mh_tdborder'>
	<?php 
    dessine_deg($s, $t);
    ?>
	</table><br>

	</td>
	<td>

	<table align='center' class='mh_tdborder'>
	<?php 
    dessine_arm($s, $t);
    ?>
	</table><br>

	</td>
	</tr>
	<tr>
	<td>

	<table align='center' class='mh_tdborder'>
	<?php 
    dessine_kill($s, $t);
    ?>
	</table><br>

	</td>
	<td>

	<table align='center' class='mh_tdborder'>
	<?php 
    dessine_dead($s, $t);
    ?>
	</table><br>

	</td>
	</tr>
	<tr>
	<td>

	<table align='center' class='mh_tdborder'>
	<?php 
    dessine_rm($s, $t);
    ?>
	</table><br>

	</td>
	<td>

	<table align='center' class='mh_tdborder'>
	<?php 
    dessine_mm($s, $t);
    ?>
	</table><br>

	</td>
	</tr>

	</table>
	<?php 
}
Example #12
0
include '../top.php';
include_once '../secure.php';
include_once '../functions.php3';
//inclusions des magasins
include_once "./inc/tresor.inc.php";
include_once "./inc/fonctions.inc.php";
/****************************************************************************************************
*	TÊTE DE LA PAGE																					*
*****************************************************************************************************/
$button = "<a href='./indexPublic.php'>[ Retour à l'index ]</a>";
if (defined('GT_' . $taniere)) {
    $gt = constant('GT_' . $taniere) . ' (' . constant('GT_POS_' . $taniere) . ')';
} else {
    $gt = 'Grande Tanière n°' . $taniere;
}
afficher_titre_tableau('Magasins ' . NOM_GUILDE . '<br/>' . "\n" . $gt, $button);
?>


<?php 
/****************************************************************************************************
*	CORPS DE LA PAGE																				*
*****************************************************************************************************/
?>

<!-- ************************************************************************************************
* Liens en tête de page																				*
***************************************************************************************************** -->
<table align="center">
<tr><td>
[ <a href="#Arme (1 main)">Armes (1 main)</a> ]
Example #13
0
function init_admin_miss($ANNEE_MISS, $GENRE_MISS, $TYPE_MISS)
{
    if ($_REQUEST[act_admin] == "edit") {
        afficher_administration_miss_fiche($ANNEE_MISS, $GENRE_MISS, $TYPE_MISS, $_REQUEST[id_troll_miss]);
    } else {
        if ($_REQUEST[act_admin] == "editdb") {
            if (edit_miss_db($ANNEE_MISS, $GENRE_MISS, $TYPE_MISS)) {
                afficher_titre_tableau("Modification effectuée", "<a href='/miss/miss.php?act_miss=admin'>Retour</a>");
            } else {
                afficher_titre_tableau("Erreur : Contactez Bodéga (49145) en copiant / collant ce que vous voyez. Merci.");
            }
        } else {
            if ($_REQUEST[act_admin] == "deldb") {
                if (delete_miss_db($ANNEE_MISS, $GENRE_MISS, $TYPE_MISS)) {
                    afficher_titre_tableau("Suppression effectuée", "<a href='/miss/miss.php?act_miss=admin'>Retour</a>");
                } else {
                    afficher_titre_tableau("Erreur : Contactez Bodéga (49145) en copiant / collant ce que vous voyez. Merci.");
                }
            } else {
                afficher_administration_miss($ANNEE_MISS, $GENRE_MISS, $TYPE_MISS);
            }
        }
    }
}
Example #14
0
function engine_info_ftp_files($isAdmin)
{
    isControlAdministrateur("yes");
    // Control strict de l'administrateur
    $mtime = filemtime("vues/Public_Trolls.txt");
    $date_fichier_trolls = date("d/m/Y H:i", $mtime);
    $mtime = filemtime("vues/Public_Guildes.txt");
    $date_fichier_guildes = date("d/m/Y H:i", $mtime);
    $text = "Si le fichier des trolls ou des guildes était vide, ce n'est pas indiqué ici.";
    afficher_titre_tableau("Date de mise à jour de la base avec les fichiers ftp de MH", $text);
    ?>
    <table class='mh_tdborder' width='70%' align='center'>
     <tr class='mh_tdpage'><td>

   		 <table width="100%" border="0" cellpadding="3" cellspacing="3">
      	<tr>
        	<td align='center'>
				<?php 
    echo "Public_Trolls.txt :" . $date_fichier_trolls . "<br><br>";
    echo "Public_Guildes.txt : {$date_fichier_guildes}";
    ?>
				<br>
				</td></tr>
			</table>
		</td></tr>
	</table>
	<br>
	<?php 
}
function afficher_liste_gtanieres()
{
    $lien = "/tanieres/tanieres.php?taniere=new";
    $button = "<input type='button' onClick='Javascript:document.location.href=\"{$lien}\"' value='Ajouter une tanière'";
    $button .= " class='mh_form_submit'>";
    $position = "Tris en distance en PA, Position de départ : <br>";
    $position .= "X=" . formulaire_listbox("x_troll", -150, 150, 1, $_REQUEST['x_troll'], "plusmoins", "yes", true, false);
    $position .= "Y=" . formulaire_listbox("y_troll", -150, 150, 1, $_REQUEST['y_troll'], "plusmoins", "yes", true, false);
    $position .= "Z=" . formulaire_listbox("z_troll", 0, 100, 1, $_REQUEST['z_troll'], "plusmoins", "yes", true, false);
    $lien_base = "/tanieres/tanieres.php?taniere=liste&nb_ppage={$nb_ppage}&criteres=";
    $position .= " <input type='submit' value='Trier' class='mh_form_submit'>";
    echo "<form name='trieForm' action='{$lien_base}' method='POST'>";
    afficher_titre_tableau("Les Grandes Tanières", $button . "<br><br>" . $position);
    echo "</form>";
    $lesGTanieres = selectDbGrandesTanieres();
    $debut = $_REQUEST['debut'];
    $order = $_REQUEST['order'];
    $criteres = $_REQUEST['criteres'];
    $nb_ppage = $_REQUEST['nb_ppage'];
    if (!isset($debut)) {
        $debut = 0;
    }
    if ($criteres == "") {
        $criteres = 'nom_gtaniere';
    }
    if ($nb_ppage == "") {
        $nb_ppage = 10;
    }
    $lien_base = "/tanieres/tanieres.php?taniere=liste&";
    $lien_base .= "x_troll=" . $_REQUEST['x_troll'];
    $lien_base .= "&y_troll=" . $_REQUEST['y_troll'];
    $lien_base .= "&z_troll=" . $_REQUEST['z_troll'];
    $lien_base .= "&criteres=";
    ?>
  <table class='mh_tdborder' width='60%' align='center'>
    <tr>
      <td>
      <table width='100%' cellspacing='0'>
        <tr class='mh_tdtitre' align="center">
        <td>
  Nombre de tanières par page :
  <a href='<?php 
    echo $lien_base . $criteres . "&order=" . $order . "&nb_ppage=10";
    ?>
'>10</a>
  <a href='<?php 
    echo $lien_base . $criteres . "&order=" . $order . "&nb_ppage=50";
    ?>
'>50</a>
  <a href='<?php 
    echo $lien_base . $criteres . "&order=" . $order . "&nb_ppage=100";
    ?>
'>100</a>
  <a href='<?php 
    echo $lien_base . $criteres . "&order=" . $order . "&nb_ppage=200";
    ?>
'>200</a>
  <a href='<?php 
    echo $lien_base . $criteres . "&order=" . $order . "&nb_ppage=500";
    ?>
'>500</a>
	
	<table width='100%'  class='mh_tdpage' cellpadding=2>

	<?php 
    $lien_base = "/tanieres/tanieres.php?taniere=liste&nb_ppage={$nb_ppage}&criteres=";
    $x_troll = $_REQUEST['x_troll'];
    $y_troll = $_REQUEST['y_troll'];
    $z_troll = $_REQUEST['z_troll'];
    $nbtotal = selectDbGrandesTanieresCount();
    $lesGTanieres = selectDbGrandesTanieres("", $debut, $nb_ppage, $criteres, $order, $x_troll, $y_troll, $z_troll);
    $nbGTanieres = count($lesGTanieres);
    if (is_numeric($x_troll) && is_numeric($y_troll) && is_numeric($z_troll)) {
        usort($lesGTanieres, "callbackSortDistancePa");
    }
    $criteres .= "&x_troll=" . $x_troll;
    $criteres .= "&y_troll=" . $y_troll;
    $criteres .= "&z_troll=" . $z_troll;
    $barre_nav = construct_barre_navigation($debut, $nbGTanieres, $nbtotal, $cfg_nbres_ppage, $nb_ppage, $lien_base, $criteres, $order);
    $i = 0;
    $j = 0;
    while (list($key, $res) = each($lesGTanieres)) {
        $j++;
        if ($j < $debut) {
            next;
        }
        if ($j > $nb_ppage) {
            break;
        }
        if ($i % 10 == 0) {
            afficher_entete_liste_gtaniere($lien_base, $criteres, $order, $x_troll, $y_troll, $z_troll);
        }
        $res = $lesGTanieres[$i];
        afficher_ligne_gtaniere($res, $x_troll, $y_troll, $z_troll);
        $i++;
    }
    ?>
	</table>
 <?php 
    echo $barre_nav;
    ?>
   </td>
   </tr>
   </table>
   </tr>
   </td>
  </table><br>

	<?php 
}
Example #16
0
function afficher_administration_miss_fiche($annee, $genre, $type, $id_troll_miss)
{
    afficher_titre_tableau("Fiche de Miss");
    $lesMiss = selectDbMiss($annee, $genre, $type, $id_troll_miss);
    $res = $lesMiss[1];
    $id_troll_miss = $res[id_troll_miss];
    $nom_troll = $res[nom_troll];
    $image_1_miss = $res[image_1_miss];
    $image_2_miss = $res[image_2_miss];
    $description_miss = stripslashes($res[description_miss]);
    $question_miss = stripslashes($res[question_miss]);
    $reponse_miss = stripslashes($res[reponse_miss]);
    ?>
	<form method='post' action=''>
	<input type='hidden' name='id_troll_miss' value='<?php 
    echo $id_troll_miss;
    ?>
'>
	<input type='hidden' name='act_admin' value='editdb'>

	<table class='mh_tdborder' width='70%'  border='0' cellpadding='0' cellspacing='1' align='center'>
		<tr class='mh_tdtitre'>
			<td colspan="2" align="center">
				 <h2>
				 	<?php 
    echo $nom_troll . " ({$id_troll_miss}) ";
    afficherLien('troll', 'mh_evenements', $id_troll_miss, "", "", "", "", true);
    ?>
					</h2>
			</td>
		</tr>
		<tr class='mh_tdpage'>
			<td align='center'>
			Slogan : <br>
			<?php 
    echo $description_miss;
    ?>
			</td>
			<td>

				<textarea name='description_miss' size='60' maxlength='65000' value='' cols=60 rows=4><?php 
    echo $description_miss;
    ?>
</textarea>
			</td>
		</tr>

		<tr class='mh_tdpage'>
			<td align='center'>
			Question : <br>
			<?php 
    echo $question_miss;
    ?>
			</td>
			<td>
				<textarea name='question_miss' size='60' maxlength='65000' value='' cols=60 rows=4><?php 
    echo $question_miss;
    ?>
</textarea>
			</td>
		</tr>

		<tr class='mh_tdpage'>
			<td align='center'>
			Réponse : <br>
			<?php 
    echo $reponse_miss;
    ?>
			</td>
			<td>
				<textarea name='reponse_miss' size='60' maxlength='65000' value='' cols=60 rows=4><?php 
    echo $reponse_miss;
    ?>
</textarea>
			</td>
		</tr>
		<tr class='mh_tdpage'>
			<td align='center'>
				Petite image<br>
				<?php 
    echo "<img src='{$image_1_miss}'>";
    ?>
			</td>
			<td>
				<input type='textbox' name='image_1_miss' size='50' maxlength='240' value='<?php 
    echo $image_1_miss;
    ?>
'>
			</td>
		</tr>
		<tr class='mh_tdpage'>
			<td align='center'>
			Grande image<br>
			<?php 
    echo "<img src='{$image_2_miss}'>";
    ?>
			</td>
			<td>
				<input type='textbox' name='image_2_miss' size='50' maxlength='240' value='<?php 
    echo $image_2_miss;
    ?>
'>
			</td>
		</tr>
		<tr class='mh_tdtitre'>
			<td align='center' colspan='2'>
				<?php 
    $link_del = 'document.location.href="/miss/miss.php?act_miss=admin&act_admin=deldb&id_troll_miss=' . $id_troll_miss . '";';
    $link_back = 'document.location.href="/miss/miss.php?act_miss=admin"';
    ?>
					
				<input type='submit' value='Modifier' class='mh_form_submit'>	
				<input type='button' value='Supprimer' class='mh_form_submit' onClick='javascript:if(confirm("Confirmer la suppression ?")) {<?php 
    echo $link_del;
    ?>
}'>	
				<input type='button' value='Retour Liste' class='mh_form_submit' onClick='javascript:<?php 
    echo $link_back;
    ?>
'>	
			</td>
		</tr>
	</table>
	</form>

	<?php 
}
Example #17
0
if (count($tresors) > 0) {
    foreach ($tresors as $tresor) {
        echo 'if (document.forms["trtDemande"].elements["suppr_' . $tresor->id . '"].checked) i++;' . "\n";
    }
}
?>
	if (i>0 && !confirm("Vous êtes sur le point de supprimer "+i+" trésor(s). Etes-vous sûr ? Je veux dire vraiment sûr ? C'est vrai quoi, il s'agirait pas de faire une boulette.")) {return;}

	document.forms["trtDemande"].submit();
}

</script>

<?php 
$button = "<a href='./index.php'>[ Retour à l'index ] </a>";
afficher_titre_tableau("Administration des Magasins " . NOM_GUILDE . "<br/>\nRecherche dans les tanières", $button);
?>


<?php 
//==================DEBUT FORMULAIRE DE RECHERCHE==================
?>
<form action="<?php 
echo $_SERVER['PHP_SELF'];
?>
" method="POST" name="trtRecherche" style="text-align:center; margin-bottom:40px;">
<table class='mh_tdborder' cellspacing="0" width="90%" align="center">
	<tr class='mh_tdpage'>
		<td width="33%">
			<table align="center">
				<tr><td>Id :</td><td><input type="text" name="id" style="width:100px" /></td></tr>
Example #18
0
?>
<br/>
<?php 
$maj = getDerniereMaj();
$c = ' Dernière mise à jour du contenu le ' . $maj['date'] . ' par ' . $maj['troll'];
afficher_contenu_tableau($c);
afficher_titre_tableau("Sélectionnez la tanière où passer votre commande");
$c = ' [ <a href="./affichage.php?taniere=33931">Le Mag\'Hasin de Kasseroll</a> ] <br>';
$c .= ' [ <a href="./affichage.php?taniere=34111">La Taverne d\'Heliacyn</a> ] <br>';
$c .= ' [ <a href="./affichage.php?taniere=38965">La Bïblyohtek de Grognon</a> ] <br>';
$c .= '<br>';
$c .= ' [ <a href="./recherche.php">Rechercher</a> ] <br>';
afficher_contenu_tableau($c);
if (isDbAdministration() || isGGT()) {
    if (!isGGT()) {
        $msg = "<b>Attention : vous êtes administrateur des outils et pas ";
        $msg .= "gestionnaire des grandes tanières, merci de ne pas trop jouer avec ça...</b>";
        afficher_titre_tableau("Gestion", $msg);
    } else {
        afficher_titre_tableau("Gestion");
    }
    $c = ' [ <a href="./affichageAdmin.php?taniere=33931">Derrière le comptoir du Mag\'Hasin</a> ] <br> ';
    $c .= ' [ <a href="./affichageAdmin.php?taniere=34111">Au bar de la Taverne</a> ] <br>';
    $c .= ' [ <a href="./affichageAdmin.php?taniere=38965">Au guichet de la Bïblyohtek</a> ] <br>';
    $c .= '<br>';
    $c .= ' [ <a href="./rechercheAdmin.php">Rechercher</a> ] <br>';
    $c .= '<br>';
    $c .= ' [ <a href="./affichageMaj.php">Mettre à jour</a> ] <br>';
    afficher_contenu_tableau($c);
}
include '../foot.php';
Example #19
0
        $modele->description .= ';MM : +';
    }
    if (isset($HTTP_POST_VARS['rm']) && $HTTP_POST_VARS['rm'] == "1") {
        $modele->description .= ';RM : +';
    }
    //champ description lui-même
    if (isset($HTTP_POST_VARS['description']) && $HTTP_POST_VARS['description'] != "") {
        $modele->description .= ';' . $HTTP_POST_VARS['description'];
    }
} else {
    $modele->id = "0";
}
$tresors = recherche($modele);
//==================FIN CREATION DU MODELE A PARTIR DES DONNEES POST==================
$button = "<a href='./index.php'>[ Retour à l'index ]</a>";
afficher_titre_tableau('Magasins ' . NOM_GUILDE . '<br/>' . "\nRecherche dans les tanières", $button);
?>

<?php 
//==================DEBUT FORMULAIRE DE RECHERCHE==================
?>
<form action="<?php 
echo $_SERVER['PHP_SELF'];
?>
" method="POST" name="trtRecherche" style="text-align:center; margin-bottom:40px;">
<table class='mh_tdborder' cellspacing="0" width="90%" align="center">
	<tr class='mh_tdpage'>
		<td width="33%">
			<table align="center">
				<tr><td>Id :</td><td><input type="text" name="id" style="width:100px" /></td></tr>
				<tr><td>Description :</td><td><input type="text" name="description" style="width:100px" /></td></tr>
Example #20
0
/****************************************************************************************************
*	TÊTE DE LA PAGE																					*
*****************************************************************************************************/
$button = "<a href='./index.php'>[ Retour à l'index ] </a>";
if ($compos) {
    $button .= " - <a href='./affichageAdmin.php?taniere=" . $taniere . "'>[ Equipement ]</a>";
} else {
    $button .= " - <a href='./affichageAdmin.php?taniere=" . $taniere . "&compos=1'>[ Compos/Champis ]</a>";
}
$button .= " - <a href='./rechercheAdmin.php?taniere={$taniere}'>[ Recherche ]</a>";
if (defined('GT_' . $taniere)) {
    $gt = constant('GT_' . $taniere) . ' (' . constant('GT_POS_' . $taniere) . ')';
} else {
    $gt = 'Grande Tanière n°' . $taniere;
}
afficher_titre_tableau("Administration des Magasins " . NOM_GUILDE . "<br/>\n" . $gt, $button);
?>
<center><input type="button" value="Nettoyer le contenu" class="mh_form_submit" onClick="nettoyer()" /></center>

<table align="center">
<tr><td>
<?php 
if (!$compos) {
    ?>
[ <a href="#Arme (1 main)">Armes (1 main)</a> ]
[ <a href="#Arme (2 mains)">Armes (2 mains)</a> ]
[ <a href="#Armure">Armures</a> ]
[ <a href="#Bidouille">Bidouilles</a> ]
[ <a href="#Bottes">Bottes</a> ]
[ <a href="#Bouclier">Boucliers</a> ]
[ <a href="#Casque">Casques</a> ]
Example #21
0
<?php

global $HTTP_GET_VARS;
include '../top.php';
afficher_titre_tableau("L'analyseur de troll<br/>", "");
?>


<script src="./analyseur_trt.js" />

<script type="text/javascript">

</script>

<form action="" method="" name="analyseur" style="text-align:center">
<table align="center" class='mh_tdborder' width="90%">
	<tr class='mh_tdtitre'>
		<td align="center" colspan="4">Race</td>
	</tr>
	<tr class='mh_tdpage'>
		<td align="center" width="25%"><input type="radio" name="race" value="tom" onChange="changeRace(this)" />Tomawak</td>
		<td align="center" width="25%"><input type="radio" name="race" value="durak" onChange="changeRace(this)" />Durakuir</td>
		<td align="center" width="25%"><input type="radio" name="race" value="kastar" onChange="changeRace(this)" />Kastar</td>
		<td align="center" width="25%"><input type="radio" name="race" value="skrim" onChange="changeRace(this)" />Skrim</td>
	</tr>
</table>

<br />

<table align="center" class='mh_tdborder' width="90%">
	<tr class='mh_tdtitre'>
Example #22
0
        } else {
            $troll_cs[$j][0] = trim($resultat[1]) . " niv " . $resultat[2];
            $troll_cs[$j][1] = trim($resultat[3]);
            $j++;
            $nb_comps++;
        }
    } else {
        if ($comps == 1) {
            $comps = 0;
            $sorts = 1;
        }
    }
    $i++;
}
if ($troll_niveau == "") {
    afficher_titre_tableau("Vous n'avez pas fait le copié/collé depuis la page du profil", "Veuillez retenter...");
    var_dump($lignes);
    var_dump($_REQUEST['copiercoller']);
    die;
}
echo "<table width='50%' border='0' cellpadding='0' cellspacing='2' class='mh_tdborder' align='center'>";
echo "<tr class='mh_tdtitre'><td>";
echo "<table border='0' class='mh_tdborder' cellpadding='0' cellspacing='1' width='100%' align='center'><tbody>";
echo "<tr class='mh_tdpage'><td class='mh_tdtitre' width='33%'><b> TROLL (id/nom)\t</b></td><td width='50%'>" . exporter(troll_nom) . "</td><td width='17%'>" . $troll_id . "</td></tr>\n";
//echo "<tr class='mh_tdpage'><td class='mh_tdtitre' width='33%'><b> RACE	(race/niveau)	</b></td><td width='50%'>".exporter(troll_race)."</td><td width='17%'>mis à jour automatiquement toutes les nuits.".exporter(troll_niveau)."</td></tr>\n";
echo "<tr class='mh_tdpage'><td class='mh_tdtitre' width='33%'><b> RACE\t(race/niveau)\t</b></td><td width='50%'>" . exporter(troll_race) . "</td><td width='17%'>Mis à jour automatiquement toutes les nuits.</td></tr>\n";
echo "<tr class='mh_tdpage'><td class='mh_tdtitre' width='33%'><b> DLA\t(base/réél)\t</b></td><td width='50%'>" . $troll_dla_base_hh . "H" . $troll_dla_base_mm . "</td><td width='17%'>" . exporter(troll_dla_reel_hh) . "H" . exporter(troll_dla_reel_mm) . "</td></tr>\n";
echo "<tr class='mh_tdpage'><td class='mh_tdtitre' width='33%'><b> VUE\t(base/bm)\t</b></td><td width='50%'>" . exporter(troll_vue_base) . "</td><td width='17%'>" . exporter(troll_vue_bm) . "</td></tr>\n";
echo "<tr class='mh_tdpage'><td class='mh_tdtitre' width='33%'><b> PV\t\t\t</b></td><td width='50%'>" . exporter(troll_pvact) . "</td><td width='17%'>" . exporter(troll_pv) . "</td></tr>\n";
echo "<tr class='mh_tdpage'><td class='mh_tdtitre' width='33%'><b> REG\t(base/bm)\t</b></td><td width='50%'>" . exporter(troll_reg_base) . "</td><td width='17%'>" . exporter(troll_reg_bm) . " " . exporter(troll_reg_bmm) . "</td></tr>\n";
echo "<tr class='mh_tdpage'><td class='mh_tdtitre' width='33%'><b> ATT\t(base/bm)\t</b></td><td width='50%'>" . exporter(troll_att_base) . "</td><td width='17%'>" . exporter(troll_att_bm) . "</td></tr>\n";
Example #23
0
global $HTTP_GET_VARS;
include '../top.php';
include_once '../secure.php';
include_once '../functions.php3';
include_once "./inc/tresor.inc.php";
include_once "./inc/fonctions.inc.php";
$no_troll = $_SESSION['AuthTroll'];
// Id du troll connecté
if (!isDbAdministration() && !isGGT()) {
    die("<h1><font color=black><b>Vous n'avez pas accès à cette page</b></font></h1");
}
?>

<?php 
$button = "<a href='./index.php'>[ Retour à l'index] </a>";
afficher_titre_tableau("Contenu des Magasins " . NOM_GUILDE . "<br/>", $button);
?>



<form action="./faireMaj.php" method="POST" name="majTaniere" style="text-align:center">
	<table  align="center" class='mh_tdborder'>
	
		<tr class='mh_tdpage'>
			<td>
				Indiquez votre login et mot de passe pour effectuer la mise à jour. Attention, le mot de passe doit être renseigné en clair (le md5 ne suffit pas !).
			</td>
		</tr>
		
		<tr class='mh_tdpage' style="text-align:center;">
			<td>