87 lines
No EOL
3.5 KiB
PHP
87 lines
No EOL
3.5 KiB
PHP
<?php
|
|
/* *************************************
|
|
Titre: Module Simple
|
|
Auteur: NNS Production
|
|
Version: 1.1
|
|
----------- Changelog ------------------
|
|
14/08/2011 - Modification d'une variable
|
|
défectueuse.
|
|
************************************* */
|
|
|
|
if ($_GET['action']=="ajouter")
|
|
{
|
|
if(isset($_POST['s1']) || isset($_POST['s2']))
|
|
{
|
|
if (empty($_POST['nom_page']) || $_POST['nom_page']=="")
|
|
{
|
|
echo "<span class='erreur'>Merci d'indiquer un nom de page.</span>";
|
|
}
|
|
else
|
|
{
|
|
$list=listing_dossier($DATA_PAGES);
|
|
$nb = sizeof($list); $nb=$nb+1;
|
|
copy('../modules/'.$_POST['type'].'/base.xml', '../data/pages/'.$nb.'.xml');
|
|
ecriture_xml('../data/pages/'.$nb.'.xml', 'nom', $_POST['nom_page']);
|
|
ecriture_xml('../data/pages/'.$nb.'.xml', 'contenu', $_POST['input']);
|
|
ecriture_xml('../data/pages/'.$nb.'.xml', 'id', $nb);
|
|
ecriture_xml('../data/pages/'.$nb.'.xml', 'ordre', $nb);
|
|
|
|
if (@$_POST['affichage']=="on"){$maintenance="1";} else {$maintenance="0";}
|
|
ecriture_xml('../data/pages/'.$nb.'.xml', 'etat', $maintenance);
|
|
if(isset($_POST['s1'])) {$m=1; echo "<span class='valide'>Page ajoutée.</span>";}
|
|
if(isset($_POST['s2'])) {$m=1;echo "<span class='valide'>Page sauvegardée.</span>";}
|
|
}
|
|
}
|
|
}
|
|
|
|
elseif ($_GET['action']=="modifier")
|
|
{
|
|
if(isset($_POST['s1']) || isset($_POST['s2']))
|
|
{
|
|
if (empty($_POST['nom_page']) || $_POST['nom_page']=="")
|
|
{
|
|
echo "<span class='erreur'>Merci d'indiquer un nom de page.</span>";
|
|
}
|
|
else
|
|
{
|
|
ecriture_xml('../data/pages/'.$_GET['id'].'.xml', 'nom', $_POST['nom_page']);
|
|
ecriture_xml('../data/pages/'.$_GET['id'].'.xml', 'contenu', $_POST['input']);
|
|
|
|
if (@$_POST['affichage']=="on"){$maintenance="1";} else {$maintenance="0";}
|
|
ecriture_xml('../data/pages/'.$_GET['id'].'.xml', 'etat', $maintenance);
|
|
|
|
if(isset($_POST['s1'])) {$m=0; echo "<span class='valide'>Changement appliqué.</span>";}
|
|
if(isset($_POST['s2'])) {$m=1; echo "<span class='valide'>Changement sauvegardé.</span>";}
|
|
}
|
|
}
|
|
$page = lecture_xml("../data/pages/".$_GET['id'].".xml");
|
|
}
|
|
if (@$m!=1) { ?>
|
|
|
|
<form action="index.php?pid=2&action=<?php echo $_GET['action']; if($_GET['action']=="modifier"){echo "&id=".$_GET['id'];}?>" method="post" onsubmit="editor.post();" enctype="multipart/form-data">
|
|
<p>
|
|
<b>Nom de la page</b><br /><br />
|
|
<input type="text" name="nom_page" class="input_text" value="<?php echo @$page['page']['nom']['#text']; ?>" id="text_input" /><br /><br />
|
|
<b>Contenu de la page</b>
|
|
</p>
|
|
<div class="gauche"><textarea id="input" name="input" cols="0" rows="0"><?php echo @$page['page']['contenu']['#text']; ?></textarea></div>
|
|
<div class="div_unique1">
|
|
<b>Options</b><br /><br />
|
|
<table id="option_table">
|
|
<tr>
|
|
<td><input type="checkbox" id="affi" name="affichage" <?php if(@$page['page']['etat']['#text']==1){echo "checked='checked'";} ?>/><label for="affi"><span style="cursor:pointer;"> Affichage</span></label></td>
|
|
<td><input type="submit" name="s1" value="Appliquer" id="apply_but"/></td>
|
|
</tr>
|
|
<tr>
|
|
<td><img src="../themes/defaut/images/icones/delete.png" alt="Delete" /><a href="index.php?pid=2"> Annuler</a></td>
|
|
<td><input type="submit" name="s2" value="Enregistrer" id="save_but"/></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<?php include('../lib/wysiwyg.lib.php'); ?>
|
|
<p>
|
|
<input type="hidden" name="type" value="<?php echo $_POST['type']; ?>" /><br /><br />
|
|
</p>
|
|
</form><?php
|
|
}
|
|
?>
|