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
* 'Content' module is used by 'Publication' and 'Workshop' modules
//////////// Check Inclusion de pages ////////////
include_once("../lib/lib_common.php");
include_once("../lib/lib_common.php");
if(isset ($_POST['id'])) $id= $_POST['id'];
if(isset ($_GET['id'])) $id= $_GET['id'];
if(isset ($_POST['valider'])) {
$result= $contents_object->DeleteContents($id, $complete_type,$sql_object);
$link_confirm= "confirm.php?rub=". $rub. "&todo=". $todo. "&type=". $type. "&id=". $parent;
if($result) header("Location: ". $link_confirm);
$result= $sql_object->DBSelect($requete);
$current_title= FormatText($result[0]['publi_title']);
$current_owner= $result[0]['publi_posted_by'];
//////////// Check Droits utilisateur ////////////
$result= $sql_object->DBSelect($requete);
$current_part= FormatText($result[0]['publicon_title'], '2HTML');
$result= $sql_object->DBSelect($requete);
$current_title= FormatText($result[0]['workrep_title']). ' ('. FormatText($result[0]['workshop_denomination']). ')';
$current_workshop_id= $result[0]['workrep_workshop_id'];
//////////// Check Droits utilisateur ////////////
$result= $sql_object->DBSelect($requete);
$current_part= FormatText($result[0]['workrepcon_title'], '2HTML');
<a href="index.php"> <? echo $GLOBALS['lang']['way']['home']; ?></a>
<a href=" <?php echo $rub_link; ?>"> <? echo $GLOBALS['lang']['menu'][$mod_inc]; ?></a>
<span> <? echo formatNavTitle($GLOBALS['lang']['contents'][$mod_inc. '_type']. " : ". $current_title); ?></span>
include_once("quickicons.php");
<div class="contentcontainer">
include_once($dir. "/menurub.php");
<form id="suptheme" action=" <?php echo $_SERVER['SCRIPT_NAME']; ?>" method="post">
echo $GLOBALS['lang']['contents']['supp_info']. "'". $current_part. "'\n";
<p> <?php echo $GLOBALS['lang']['divers']['sup_confirm']; ?></p>
<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" />
<input name="type" type="hidden" value=" <?php echo $type; ?>" id="type" />
<input name="parent" type="hidden" value=" <?php echo $parent; ?>" id="parent" />
<input name="valider" type="submit" value=" <? echo $GLOBALS['lang']['btn']['valid'] ?>" class="button" id="valider" />
<?php include_once($dir. "/help.php"); ?>
|