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");
$link_det= $rub_link. "&todo=det&id=";
$link_det2= $rub_link. "&todo=det&id=";
//$link_sup=$rub_link."&todo=sup&id=";
//$link_mod=$rub_link."&todo=mod&id=";
if (!isset ($_GET['value_id']) && !isset ($_POST['value_id'])) {
if (isset ($_POST['value_id'])) $value_id = $_POST['value_id'];
if (isset ($_GET['value_id'])) $value_id = $_GET['value_id'];
if (!isset ($_GET['id']) && !isset ($_POST['id'])) {
if (isset ($_POST['id'])) $id = $_POST['id'];
if (isset ($_GET['id'])) $id = $_GET['id'];
if (!isset ($_GET['scale_id']) && !isset ($_POST['scale_id'])) {
if (isset ($_POST['scale_id'])) $scale_id = $_POST['scale_id'];
if (isset ($_GET['id'])) $scale_id = $_GET['scale_id'];
if(isset ($_POST['annuler'])) {
header("Location: ". $link_det2. $_POST['id']. "&scale_id=". $scale_id);
if(isset ($_POST['valider'])) {
$value_id= $_POST['value_id'];
$link_confirm= "confirm.php?rub=". $rub. "&todo=". $todo. "&id=". $id. "&scale_id=". $scale_id;
$result= $sdi_object->DeleteValue($value_id, $sql_object);
if($result) header("Location: ". $link_confirm);
$data_sdii = $sql_object -> DBSelect($req_sdii);
<li><a href="index.php" class="chemin_home"> <?php echo _t('way','home'); ?></a></li>
<li><a href=" <?php echo $rub_link; ?>" id="chemin_ <?php echo $rub; ?>" class="chemin_rub"> <?php echo _t('menu','dashboard'); ?></a></li>
<li><span> <?php echo _t('dashboard','sup'). ' '. $display_title; ?></span></li>
include_once(THEME_ADMIN_PATH. "quickicons.php");
<div class="contentcontainer"> <?php
include_once($dir. "/menurub.php");
<h2> <?php echo _t('dashboard','sup'); ?> : <?php echo $display_title; ?></h2>
<form id="supvalue" action=" <?php echo $_SERVER['SCRIPT_NAME']; ?>" method="post">
<div class="info" id="truetransfert1">
<?php echo _t('dashboard','sup_value_warning'); ?>
<input name="id" type="hidden" value=" <?php echo $id; ?>" />
<input name="scale_id" type="hidden" value=" <?php echo $scale_id; ?>" />
<input name="value_id" type="hidden" value=" <?php echo $value_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="annuler" type="submit" value=" <?php echo _t('btn','annul') ?>" class="button" id="annuler" />
<input name="valider" type="submit" value=" <?php echo _t('btn','valid') ?>" class="button" id="valider" />
<?php include_once($dir. "/help.php"); ?></div>
|