Source for file mod.php
Documentation is available at mod.php
* @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 ($_GET['id'])) $scale_id= $_GET['id'];
if (isset ($_POST['id'])) $scale_id= $_POST['id'];
$scale_object= new scale;
$data= $sql_object->DBSelect($requete, 'OBJECT');
$current_title= formatText($data[0]->scale_denomination, '2HTML');
$current_scale_dependencies= $data[0]->scale_dependencies;
$current_root= $data[0]->scale_root;
if(isset ($_POST['valider'])) {
$table[0]= $_POST['denomination'];
$table[1]= $_POST['surface'];
$table[2]= $_POST['population'];
$table[3]= $_POST['root_scale'];
$table[4]= $_POST['com_scale'];
$table[5]= $_POST['statut_scale'];
$integrity= $scale_object->CheckDataIntegrity($table);
if(is_string($integrity)) $format_text= '2FIELD';
else $format_text= '2HTML';
$form_denomination= formatText($_POST['denomination'], $format_text);
$form_surface= $_POST['surface'];
$form_population= $_POST['population'];
$form_comment= $_POST['com_scale'];
$form_root_scale= $_POST['root_scale'];
$form_statut_scale= $_POST['statut_scale'];
if(isset ($_POST['enregistrer'])) {
$result= $scale_object->ModifyScale($scale_id, $data_table, $sql_object);
$link_confirm= "confirm.php?rub=". $rub. "&todo=". $todo. "&id=". $scale_id;
if($result) header("Location: ". $link_confirm);
$data= $sql_object->DBSelect($requete, 'OBJECT');
$form_denomination= formatText($data[0]->scale_denomination, '2FIELD');
$form_surface= $data[0]->scale_surface;
$form_population= $data[0]->scale_inhabitantsnumber;
$form_root_scale= $data[0]->scale_root;
$form_statut_scale= $data[0]->scale_statut;
$form_comment= formatText($data[0]->scale_comment, '2FIELD');
if($form_statut_scale== 'P') $mask_statut_P= ' checked="checked"';
if($form_statut_scale== 'D') $mask_statut_D= ' checked="checked"';
<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','scale')?></a></li>
<li><span> <?php echo _t('scale','mod') . ' : '. formatNavTitle($current_title);?></span>
include_once(THEME_ADMIN_PATH. "quickicons.php");
if($current_scale_dependencies!= 0) {
include_once("../lib/input_helpers.php");
// select-box des échelles
$table_exclu= $scale_object->getMaxDepth($scale_id, $sql_object);
$data= $sql_object->DBSelect($req_mod);
$select_statut= "<label for=\"statut_P\" >". _t('divers','statut') . " : *</label>\n";
$select_statut.= "<input type=\"radio\" name=\"statut_scale\" id=\"statut_P\" value=\"P\"". $mask_statut_P. " /><span class=\"radio\">". _t('statut','public'). "</span>\n";
$select_statut.= "<input type=\"radio\" name=\"statut_scale\" id=\"statut_D\" value=\"D\"". $mask_statut_D. " /><span class=\"radio\">". _t('statut','draft'). "</span>\n";
$select_root .= "<input type=\"hidden\" name=\"root_scale\" value=\"0\" id=\"root_scale\" />\n";
$select_statut= "<input type=\"hidden\" name=\"statut_scale\" value=\"P\" id=\"statut_scale\" />\n";
if(!isset ($integrity) || is_string($integrity)) {
<div class="contentcontainer"> <?php
include_once($dir. "/menurub.php");
<form id="modscale" action=" <?php echo $_SERVER['SCRIPT_NAME']; ?>"
<p><label for="denomination"> <?php echo _t('scale','denomination'); ?> :
*</label> <input name="denomination" type="text" id="denomination"
maxlength="200" value=" <?php echo $form_denomination; ?>"
<p><label for="surface"> <?php echo _t('scale','surface'); ?> ( <?php echo SURFACE_UNIT; ?>)
:</label> <input name="surface" type="text" id="surface" maxlength="8"
value=" <?php echo $form_surface; ?>" class="textfield" /></p>
<p><label for="population"> <?php echo _t('scale','population'); ?> :</label>
<input name="population" type="text" id="population" maxlength="8"
value=" <?php echo $form_population; ?>" class="textfield" /></p>
<p><label for="root_scale"> <?php echo _t('scale','root'); ?> : *</label>
<?php echo $select_root; ?></p>
<?php echo $select_statut; ?>
<p><label for="com_scale"> <?php echo _t('scale','comment'); ?> : </label>
<textarea id="com_scale" name="com_scale" class="largetextfield"
<?php echo AREA_SETTINGS; ?>> <?php echo $form_comment; ?></textarea> <br />
<div><input name="statut_scale" type="hidden" value="P" id="statut_P" />
<input name="id" type="hidden" value=" <?php echo $scale_id; ?>"
id="scale_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>
$display_form_surface= empty_nc($form_surface);
$display_form_population= empty_nc($form_population);
// sélection de l'échelle racine si elle en a une (!echelle root)
if($current_scale_dependencies!= 0) {
$data= $sql_object->DBSelect($requete);
$display_root_scale= "<dt>". _t('scale','root'). " : </dt>\n";
$display_root_scale.= "<dd>". formatText($data[0]['scale_denomination'], '2HTML'). "<br /></dd>\n";
} else $display_root_scale= '';
<div class="contentcontainer"> <?php
include_once($dir. "/menurub.php");
<h2> <?php echo _t('recap','title'); ?></h2>
<dt> <?php echo _t('scale','denomination'); ?> :</dt>
<dd> <?php echo $form_denomination; ?><br />
<dt> <?php echo _t('scale','surface'); ?> ( <?php echo SURFACE_UNIT; ?>)
<dd> <?php echo $display_form_surface; ?><br />
<dt> <?php echo _t('scale','population'); ?> :</dt>
<dd> <?php echo $display_form_population; ?><br />
<?php echo $display_root_scale; ?>
<?php /*<dt><?php echo _t('divers','statut'); ?>: </dt>
<dd><?php echo $display_statut_scale; ?><br /></dd> */ ?>
<dt> <?php echo _t('scale','comment'); ?> :</dt>
<dd> <?php echo formatText($display_form_comment, '2HTML'); ?><br />
<form id="addscale" action=" <?php echo $_SERVER['SCRIPT_NAME']; ?>"
<div><input name="id" type="hidden" value=" <?php echo $scale_id; ?>"
id="scale_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="data_table" type="hidden" value=" <?php echo $table; ?>"
id="data_table" /> <?php echo cancel_button('?rub=scale&todo=list'); ?>
<input name="retour" type="button"
value=" <?php echo _t('btn','preview') ?>" class="button" id="retour"
onclick="history.go(-1);" /> <input name="enregistrer" type="submit"
value=" <?php echo _t('btn','save') ?>" class="button" id="valider" /></div>
<?php include_once($dir. "/help.php"); ?></div>
|