Source for file sup.php
Documentation is available at sup.php
* @package linea21.modules
* @author linea21 <info@linea21.com>
* @license http://opensource.org/licenses/gpl-3.0.html
//////////// Check Inclusion de pages ////////////
include_once("../lib/lib_common.php");
if(isset ($_POST['id'])) $id= $_POST['id'];
if(isset ($_GET['id'])) $id= $_GET['id'];
$link_det= $rub_link. "&todo=det&id=". $id;
if(isset ($_POST['valider'])) {
$link_confirm= "confirm.php?rub=". $rub. "&todo=". $todo;
$result= $newsletter_object->DeleteNewsletter($id, $sql_object);
if($result) header("Location: ". $link_confirm);
$newsletter_title= FormatText($result[0]['newsletter_title']);
$newsletter_status= $result[0]['newsletter_statut'];
//////////// Check Droits utilisateur + statut newsletter courante ////////////
<li><a href="index.php" class="chemin_home"> <?php echo _t('way','home'); ?></a>
<li><a href=" <?php echo $rub_link; ?>" id="chemin_ <?php echo $rub; ?>"
class="chemin_rub"> <?php echo _t('menu','newsletter'); ?></a></li>
<li><span> <?php echo formatNavTitle(_t('newsletter','sup'). " : ". $newsletter_title); ?></span>
include_once(THEME_ADMIN_PATH. "quickicons.php");
<div class="contentcontainer"> <?php
include_once($dir. "/menurub.php");
<div id="content"> <?php echo "<h2>". formatTitleh2($newsletter_title). "</h2>"; ?>
<form id="suptheme" action=" <?php echo $_SERVER['SCRIPT_NAME']; ?>"
<p class="info"> <?php echo _t('divers','sup_confirm'); ?></p>
<div><input name="id" type="hidden" value=" <?php echo $id; ?>" /> <input
name="rub" type="hidden" value=" <?php echo $rub; ?>" id="rub" /> <input
name="todo" type="hidden" value=" <?php echo $todo; ?>" id="todo" /> <?php echo cancel_button('javascript:history.go(-1);'); ?>
<input name="valider" type="submit"
value=" <?php echo _t('btn','valid'); ?>" class="button" id="valider" />
<?php include_once($dir. "/help.php"); ?></div>
|