|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416 |
- <?php
-
- $xml = simplexml_load_file('../medias/'.$hash.'/'.$fichier);
- if (!isset($itemnb)) {
- $itemnb=0;
- } else {
- $itemnb++;
- }
- foreach($xml->entry as $entry) {
- ?>
-
- <!-- gamers -->
- <div class="col-lg-4" id="content_<?php echo $entry->nom; ?>">
- <div class="panel panel-<?php echo $entry->trans; ?>">
- <div class="panel-heading">
- <div class="row">
- <div class="col-lg-3">
- <?php button_modif_level("level_down", $entry->nom, "<i class='ionicons ion-arrow-graph-down-left'></i>"); ?>
- <span class="level"><?php echo $entry->level; ?></span>
- <?php button_modif_level("level_up", $entry->nom, "<i class='ionicons ion-arrow-graph-up-right'></i>"); ?>
- </div>
- <div class="col-lg-5 player_name">
- <?php echo $entry->nom; ?>
- </div>
- <div class="col-lg-4">
- <?php
- if ($entry->level !=0) {
- trans("trans_dark", $entry->nom, "#8128B5"); ?><?php trans("trans_light", $entry->nom, "#ADDFFF"); ?><?php trans("trans_default", $entry->nom, "#AAA");
- }
- ?>
- </div>
- </div>
- <div class="row">
- <div class="col-lg-4">
- <h3><i class="ionicons ion-egg" style="color:brown;";></i> <strong><?php echo $entry->money; ?></strong></h3>
- </div>
- <div class="col-lg-4">
- <?php
- $hp_max="10";
- switch ($entry->level)
- {
- case 0:
- $hp_max+=0;
- break;
- case 1:
- $hp_max+=2;
- break;
- case 2:
- $hp_max+=5;
- break;
- case 3:
- $hp_max+=10;
- break;
- default:
- echo "?";
- }
- ?>
- <h3><i class="ionicons ion-heart" style="color:red;";></i> <strong><?php echo $entry->hp; ?></strong><sub>/<?php echo $hp_max; ?></sub></h3>
- </div>
- <div class="col-lg-4">
- <h3><i class="ionicons ion-flash" style="color:#FFD700;";></i> <strong><?php echo $entry->xp; ?></strong> </h3>
- </div>
- </div>
- <div class="row">
- <div class="col-lg-4">
- <?php button_modif_money("money_reset", $entry->nom, "0"); ?>
- <?php button_modif_money("money_moins", $entry->nom, "-"); ?>
- <?php button_modif_money("money_plus", $entry->nom, "+"); ?>
- </div>
- <div class="col-lg-4">
- <?php button_modif_hp("hp_moins", $entry->nom, '<i class="ionicons ion-heart-broken"></i>'); ?>
- <?php button_modif_hp("hp_plus", $entry->nom, '<i class="ionicons ion-heart"></i>'); ?>
- <?php button_modif_hp("heal", $entry->nom, '<i class="ionicons ion-fireball" style="color:green;"></i>'); ?>
- </div>
- <div class="col-lg-4">
- <?php button_modif_xp("xp_reset", $entry->nom, '<i class="ionicons ion-flash-off"></i>'); ?>
- <?php button_modif_xp("xp_moinsmoins", $entry->nom, "--"); ?>
- <?php button_modif_xp("xp_moins", $entry->nom, "-"); ?>
- <?php button_modif_xp("xp_plus", $entry->nom, "+"); ?>
- <?php button_modif_xp("xp_plusplus", $entry->nom, "++"); ?>
- </div>
- </div>
- </div>
-
- <div class="panel-body">
-
- <div class="row">
-
- <div class="col-lg-3">
- <h4><strong>Attaque</strong></h4>
- <?php button_modif_attack("attack_down", $entry->nom, "<i class='ionicons ion-arrow-down-c'></i>"); ?>
- <span class="skill"><?php echo ($entry->attack+$entry->level+$entry->stuff->stuff_1->spec); ?></span>
- <?php button_modif_attack("attack_up", $entry->nom, "<i class='ionicons ion-arrow-up-c'></i>"); ?>
- </div>
- <div class="col-lg-3">
- <h4><strong>Défense</strong></h4>
- <?php button_modif_defense("defense_down", $entry->nom, "<i class='ionicons ion-arrow-down-c'></i>"); ?>
- <span class="skill"><?php echo ($entry->defense+$entry->level+$entry->stuff->stuff_2->spec); ?></span>
- <?php button_modif_defense("defense_up", $entry->nom, "<i class='ionicons ion-arrow-up-c'></i>"); ?>
- </div>
-
- <div class="col-lg-1">
- <?php button_modif_ecos("eco_blanche_moins", $entry->nom, "<span style='color:#ADDFFF'>-</span>"); ?>
- </div>
- <div class="col-lg-4">
- <div class="progress progress-striped active">
- <div class="progress-bar-eco blanche glow"><span style="width: <?php echo ($entry->ecos->blanche)*20; ?>%"><?php echo $entry->ecos->blanche; ?></span></div>
- </div>
- </div>
-
- <div class="col-lg-1">
- <?php button_modif_ecos("eco_blanche_plus", $entry->nom, "<span style='color:#ADDFFF'>+</span>"); ?>
- </div>
- <br /><br />
- <div class="col-lg-1">
- <?php button_modif_ecos("eco_noire_moins", $entry->nom, "<span style='color:#8128B5'>-</span>"); ?>
- </div>
- <div class="col-lg-4">
- <div class="progress progress-striped active">
- <div class="progress-bar-eco noire glow"><span style="width: <?php echo ($entry->ecos->noire)*20; ?>%"><?php echo $entry->ecos->noire; ?></span></div>
- </div>
- </div>
- <div class="col-lg-1">
- <?php button_modif_ecos("eco_noire_plus", $entry->nom, "<span style='color:#8128B5'>+</span>"); ?>
- </div>
-
- </div>
- <hr />
- <div class="row">
- <div class="col-lg-1">
- <?php button_modif_ecos("eco_verte_moins", $entry->nom, "<span style='color:green'>-</span>"); ?>
- </div>
- <div class="col-lg-4">
- <div class="progress progress-striped active">
- <div class="progress-bar-eco verte glow"><span style="width: <?php echo ($entry->ecos->verte)*20; ?>%"><?php echo $entry->ecos->verte; ?></span></div>
- </div>
- </div>
- <div class="col-lg-1">
- <?php button_modif_ecos("eco_verte_plus", $entry->nom, "<span style='color:green'>+</span>"); ?>
- </div>
-
- <div class="col-lg-1">
- <?php button_modif_ecos("eco_bleue_moins", $entry->nom, "<span style='color:blue'>-</span>"); ?>
- </div>
- <div class="col-lg-4">
- <div class="progress progress-striped active">
- <div class="progress-bar-eco bleue glow"><span style="width: <?php echo ($entry->ecos->bleue)*20; ?>%"><?php echo $entry->ecos->bleue; ?></span></div>
- </div>
- </div>
- <div class="col-lg-1">
- <?php button_modif_ecos("eco_bleue_plus", $entry->nom, "<span style='color:blue'>+</span>"); ?>
- </div>
- </div>
-
- <div class="row">
- <div class="col-lg-1">
- <?php button_modif_ecos("eco_jaune_moins", $entry->nom, "<span style='color:#FFD700'>-</span>"); ?>
- </div>
- <div class="col-lg-4">
- <div class="progress progress-striped active">
- <div class="progress-bar-eco jaune glow"><span style="width: <?php echo ($entry->ecos->jaune)*20; ?>%"><?php echo $entry->ecos->jaune; ?></span></div>
- </div>
- </div>
- <div class="col-lg-1">
- <?php button_modif_ecos("eco_jaune_plus", $entry->nom, "<span style='color:#FFD700'>+</span>"); ?>
- </div>
-
- <div class="col-lg-1">
- <?php button_modif_ecos("eco_rouge_moins", $entry->nom, "<span style='color:red'>-</span>"); ?>
- </div>
- <div class="col-lg-4">
- <div class="progress progress-striped active">
- <div class="progress-bar-eco rouge glow"><span style="width: <?php echo ($entry->ecos->rouge)*20; ?>%"><?php echo $entry->ecos->rouge; ?></span></div>
- </div>
- </div>
- <div class="col-lg-1">
- <?php button_modif_ecos("eco_rouge_plus", $entry->nom, "<span style='color:red'>+</span>"); ?>
- </div>
- </div>
- <hr />
-
- <div>
- <button class="btn btn-default btn-sm" data-toggle="modal" data-target="#stuff<?php echo $itemnb; ?>" style="float:right;"><i class="ionicons ion-wrench"></i></button>
- <h3>Équipements</h3>
- </div>
- <div class="row">
- <div class="col-lg-3">
- <h4><img src="../img/item/offensif.png" class="img-rounded"> Offensif</h4>
- <div class="bs-component">
- <span class="label enchant-<?php echo $entry->stuff->stuff_1->enchant;?>" data-toggle="tooltip" data-placement="top" data-original-title="Attaque +<?php echo $entry->stuff->stuff_1->spec;?>"><?php echo $entry->stuff->stuff_1->info;?></span>
- </div>
- </div>
- <div class="col-lg-3">
- <h4><img src="../img/item/defensif.png" class="img-rounded"> Défensif</h4>
- <div class="bs-component">
- <span class="label enchant-<?php echo $entry->stuff->stuff_2->enchant;?>" data-toggle="tooltip" data-placement="top" data-original-title="Défense +<?php echo $entry->stuff->stuff_2->spec;?>"><?php echo $entry->stuff->stuff_2->info;?></span>
- </div>
- </div>
- <div class="col-lg-6">
- <h4><img src="../img/item/objets.png" class="img-rounded"> Objets</h4>
- <div class="bs-component">
- <span class="label enchant-<?php echo $entry->stuff->stuff_3->enchant;?>" data-toggle="tooltip" data-placement="top" data-original-title="<?php echo $entry->stuff->stuff_3->spec;?>"><?php echo $entry->stuff->stuff_3->info;?></span>
- <span class="label enchant-<?php echo $entry->stuff->stuff_4->enchant;?>" data-toggle="tooltip" data-placement="top" data-original-title="<?php echo $entry->stuff->stuff_4->spec;?>"><?php echo $entry->stuff->stuff_4->info;?></span>
- <span class="label enchant-<?php echo $entry->stuff->stuff_5->enchant;?>" data-toggle="tooltip" data-placement="top" data-original-title="<?php echo $entry->stuff->stuff_5->spec;?>"><?php echo $entry->stuff->stuff_5->info;?></span>
- <span class="label enchant-<?php echo $entry->stuff->stuff_6->enchant;?>" data-toggle="tooltip" data-placement="top" data-original-title="<?php echo $entry->stuff->stuff_6->spec;?>"><?php echo $entry->stuff->stuff_6->info;?></span>
- </div>
- </div>
- </div>
- </div>
-
- <!-- notes -->
- <div class="modal fade" id="stuff<?php echo $itemnb;?>" tabindex="-1" role="dialog" aria-labelledby="stuff<?php echo $itemnb;?>" aria-hidden="true">
- <div class="modal-dialog">
- <div class="modal-content">
- <div class="modal-body">
- <div class="container-fluid">
- <div class="col-lg-12">
-
- <form action="action.php?edit_stuff&entry=<?php echo $entry->nom; ?>" method="post">
-
- <fieldset>
- <legend><img src="../img/item/offensif.png" class="img-rounded"> Offensif</legend>
- <div class="form-group">
- <div class="col-lg-4">
- Primaire
- <input class="form-control input-sm" type="text" name="stuff_1_info" value="<?php echo $entry->stuff->stuff_1->info;?>" maxlength="28" />
- </div>
- <div class="col-lg-2">
- Att. +
- <input class="form-control input-sm" type="text" name="stuff_1_spec" value="<?php echo $entry->stuff->stuff_1->spec;?>" maxlength="1" />
- </div>
- <div class="col-lg-6">
- Echantement<br />
- <input type="radio" name="stuff_1_enchant" id="default" value="default" <?php if ($entry->stuff->stuff_1->enchant == 'default') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:grey;"></i>
- <input type="radio" name="stuff_1_enchant" id="verte" value="verte" <?php if ($entry->stuff->stuff_1->enchant == 'verte') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:green;"></i>
- <input type="radio" name="stuff_1_enchant" id="bleue" value="bleue" <?php if ($entry->stuff->stuff_1->enchant == 'bleue') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:blue;"></i>
- <input type="radio" name="stuff_1_enchant" id="jaune" value="jaune" <?php if ($entry->stuff->stuff_1->enchant == 'jaune') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:gold;"></i>
- <input type="radio" name="stuff_1_enchant" id="rouge" value="rouge" <?php if ($entry->stuff->stuff_1->enchant == 'rouge') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:red;"></i>
- <input type="radio" name="stuff_1_enchant" id="blanche" value="blanche" <?php if ($entry->stuff->stuff_1->enchant == 'blanche') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:#ADDFFF;"></i>
- <input type="radio" name="stuff_1_enchant" id="noire" value="noire" <?php if ($entry->stuff->stuff_1->enchant == 'noire') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:#8128B5;"></i>
- </div>
- </div>
- <br />
- <br />
- <br />
- <legend><img src="../img/item/defensif.png" class="img-rounded"> Défensif</legend>
- <div class="form-group">
- <div class="col-lg-4">
- Primaire
- <input class="form-control input-sm" type="text" name="stuff_2_info" value="<?php echo $entry->stuff->stuff_2->info;?>" maxlength="28" />
- </div>
- <div class="col-lg-2">
- Déf. +
- <input class="form-control input-sm" type="text" name="stuff_2_spec" value="<?php echo $entry->stuff->stuff_2->spec;?>" maxlength="1" />
- </div>
- <div class="col-lg-6">
- Echantement<br />
- <input type="radio" name="stuff_2_enchant" id="default" value="default" <?php if ($entry->stuff->stuff_2->enchant == 'default') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:grey;"></i>
- <input type="radio" name="stuff_2_enchant" id="verte" value="verte" <?php if ($entry->stuff->stuff_2->enchant == 'verte') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:green;"></i>
- <input type="radio" name="stuff_2_enchant" id="bleue" value="bleue" <?php if ($entry->stuff->stuff_2->enchant == 'bleue') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:blue;"></i>
- <input type="radio" name="stuff_2_enchant" id="jaune" value="jaune" <?php if ($entry->stuff->stuff_2->enchant == 'jaune') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:gold;"></i>
- <input type="radio" name="stuff_2_enchant" id="rouge" value="rouge" <?php if ($entry->stuff->stuff_2->enchant == 'rouge') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:red;"></i>
- <input type="radio" name="stuff_2_enchant" id="blanche" value="blanche" <?php if ($entry->stuff->stuff_2->enchant == 'blanche') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:#ADDFFF;"></i>
- <input type="radio" name="stuff_2_enchant" id="noire" value="noire" <?php if ($entry->stuff->stuff_2->enchant == 'noire') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:#8128B5;"></i>
- </div>
- </div>
- <br />
- <br />
- <br />
- <br />
- <legend><img src="../img/item/objets.png" class="img-rounded"> Objets</legend>
- <div class="form-group">
- <div class="col-lg-3">
- Détails
- <input class="form-control input-sm" type="text" name="stuff_3_info" value="<?php echo $entry->stuff->stuff_3->info;?>" maxlength="10" />
- </div>
- <div class="col-lg-3">
- Détails
- <input class="form-control input-sm" type="text" name="stuff_3_spec" value="<?php echo $entry->stuff->stuff_3->spec;?>" />
- </div>
- <div class="col-lg-6">
- Echantement<br />
- <input type="radio" name="stuff_3_enchant" id="default" value="default" <?php if ($entry->stuff->stuff_3->enchant == 'default') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:grey;"></i>
- <input type="radio" name="stuff_3_enchant" id="verte" value="verte" <?php if ($entry->stuff->stuff_3->enchant == 'verte') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:green;"></i>
- <input type="radio" name="stuff_3_enchant" id="bleue" value="bleue" <?php if ($entry->stuff->stuff_3->enchant == 'bleue') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:blue;"></i>
- <input type="radio" name="stuff_3_enchant" id="jaune" value="jaune" <?php if ($entry->stuff->stuff_3->enchant == 'jaune') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:gold;"></i>
- <input type="radio" name="stuff_3_enchant" id="rouge" value="rouge" <?php if ($entry->stuff->stuff_3->enchant == 'rouge') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:red;"></i>
- <input type="radio" name="stuff_3_enchant" id="blanche" value="blanche" <?php if ($entry->stuff->stuff_3->enchant == 'blanche') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:#ADDFFF;"></i>
- <input type="radio" name="stuff_3_enchant" id="noire" value="noire" <?php if ($entry->stuff->stuff_3->enchant == 'noire') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:#8128B5;"></i>
- </div>
- </div>
- <br /><br /><br />
- <div class="form-group">
- <div class="col-lg-3">
- Détails
- <input class="form-control input-sm" type="text" name="stuff_4_info" value="<?php echo $entry->stuff->stuff_4->info;?>" maxlength="10" />
- </div>
- <div class="col-lg-3">
- Détails
- <input class="form-control input-sm" type="text" name="stuff_4_spec" value="<?php echo $entry->stuff->stuff_4->spec;?>" />
- </div>
- <div class="col-lg-6">
- Echantement<br />
- <input type="radio" name="stuff_4_enchant" id="default" value="default" <?php if ($entry->stuff->stuff_4->enchant == 'default') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:grey;"></i>
- <input type="radio" name="stuff_4_enchant" id="verte" value="verte" <?php if ($entry->stuff->stuff_4->enchant == 'verte') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:green;"></i>
- <input type="radio" name="stuff_4_enchant" id="bleue" value="bleue" <?php if ($entry->stuff->stuff_4->enchant == 'bleue') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:blue;"></i>
- <input type="radio" name="stuff_4_enchant" id="jaune" value="jaune" <?php if ($entry->stuff->stuff_4->enchant == 'jaune') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:gold;"></i>
- <input type="radio" name="stuff_4_enchant" id="rouge" value="rouge" <?php if ($entry->stuff->stuff_4->enchant == 'rouge') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:red;"></i>
- <input type="radio" name="stuff_4_enchant" id="blanche" value="blanche" <?php if ($entry->stuff->stuff_4->enchant == 'blanche') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:#ADDFFF;"></i>
- <input type="radio" name="stuff_4_enchant" id="noire" value="noire" <?php if ($entry->stuff->stuff_4->enchant == 'noire') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:#8128B5;"></i>
- </div>
- </div>
- <br /><br />
- <div class="form-group">
- <div class="col-lg-3">
- Détails
- <input class="form-control input-sm" type="text" name="stuff_5_info" value="<?php echo $entry->stuff->stuff_5->info;?>" maxlength="10" />
- </div>
- <div class="col-lg-3">
- Détails
- <input class="form-control input-sm" type="text" name="stuff_5_spec" value="<?php echo $entry->stuff->stuff_5->spec;?>" />
- </div>
- <div class="col-lg-6">
- Echantement<br />
- <input type="radio" name="stuff_5_enchant" id="default" value="default" <?php if ($entry->stuff->stuff_5->enchant == 'default') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:grey;"></i>
- <input type="radio" name="stuff_5_enchant" id="verte" value="verte" <?php if ($entry->stuff->stuff_5->enchant == 'verte') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:green;"></i>
- <input type="radio" name="stuff_5_enchant" id="bleue" value="bleue" <?php if ($entry->stuff->stuff_5->enchant == 'bleue') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:blue;"></i>
- <input type="radio" name="stuff_5_enchant" id="jaune" value="jaune" <?php if ($entry->stuff->stuff_5->enchant == 'jaune') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:gold;"></i>
- <input type="radio" name="stuff_5_enchant" id="rouge" value="rouge" <?php if ($entry->stuff->stuff_5->enchant == 'rouge') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:red;"></i>
- <input type="radio" name="stuff_5_enchant" id="blanche" value="blanche" <?php if ($entry->stuff->stuff_5->enchant == 'blanche') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:#ADDFFF;"></i>
- <input type="radio" name="stuff_5_enchant" id="noire" value="noire" <?php if ($entry->stuff->stuff_5->enchant == 'noire') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:#8128B5;"></i>
- </div>
- </div>
- <br /><br />
- <div class="form-group">
- <div class="col-lg-3">
- Détails
- <input class="form-control input-sm" type="text" name="stuff_6_info" value="<?php echo $entry->stuff->stuff_6->info;?>" maxlength="10" />
- </div>
- <div class="col-lg-3">
- Détails
- <input class="form-control input-sm" type="text" name="stuff_6_spec" value="<?php echo $entry->stuff->stuff_6->spec;?>" />
- </div>
- <div class="col-lg-6">
- Echantement<br />
- <input type="radio" name="stuff_6_enchant" id="default" value="default" <?php if ($entry->stuff->stuff_6->enchant == 'default') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:grey;"></i>
- <input type="radio" name="stuff_6_enchant" id="verte" value="verte" <?php if ($entry->stuff->stuff_6->enchant == 'verte') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:green;"></i>
- <input type="radio" name="stuff_6_enchant" id="bleue" value="bleue" <?php if ($entry->stuff->stuff_6->enchant == 'bleue') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:blue;"></i>
- <input type="radio" name="stuff_6_enchant" id="jaune" value="jaune" <?php if ($entry->stuff->stuff_6->enchant == 'jaune') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:gold;"></i>
- <input type="radio" name="stuff_6_enchant" id="rouge" value="rouge" <?php if ($entry->stuff->stuff_6->enchant == 'rouge') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:red;"></i>
- <input type="radio" name="stuff_6_enchant" id="blanche" value="blanche" <?php if ($entry->stuff->stuff_6->enchant == 'blanche') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:#ADDFFF;"></i>
- <input type="radio" name="stuff_6_enchant" id="noire" value="noire" <?php if ($entry->stuff->stuff_6->enchant == 'noire') { echo 'checked=""'; } ?>>
- <i class="ionicons ion-fireball" style="color:#8128B5;"></i>
- </div>
- </div>
- </fieldset>
-
- <div class="modal-footer">
- <button type="button" class="btn btn-default" data-dismiss="modal" style="float:left;">Fermer</button>
- <input type="submit" class="btn btn-primary" value="Editer" />
- </div>
- </form>
-
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
-
- </div>
- </div>
- <!-- /gamers -->
-
- <?php } ?>
|