Source for file add.php
Documentation is available at add.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");
<a href="index.php"> <? echo $GLOBALS['lang']['way']['home']; ?></a>
<a href=" <?php echo $rub_link; ?>"> <? echo $GLOBALS['lang']['menu']['scale']; ?></a>
<span> <? echo formatnavTitle($GLOBALS['lang']['scale']['add']); ?></span>
if(isset ($_POST['enregistrer'])) {
$scale_object= new scale;
$result= $scale_object->AddScale($data_table, $sql_object);
$link_confirm= "confirm.php?rub=". $rub. "&todo=". $todo;
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'];
$scale_object= new 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= formatText($_POST['com_scale'], $format_text);
$form_root_scale= $_POST['root_scale'];
include_once("quickicons.php");
include_once("../lib/input_helpers.php");
// select-box des échelles
$data= $sql_object->DBSelect($req_add);
if(!isset ($integrity) || is_string($integrity)) {
<div class="contentcontainer">
include_once($dir. "/menurub.php");
<h2> <? echo formatTitleh2($GLOBALS['lang']['scale']['add_title']); ?></h2>
<form id="addscale" action=" <?php echo $_SERVER['SCRIPT_NAME']; ?>" method="post">
<label for="denomination" > <? echo $GLOBALS['lang']['scale']['denomination'] ?> : *</label>
<input name="denomination" type="text" id="denomination" maxlength="200" value=" <?php echo $form_denomination; ?>" class="textfield"/>
<label for="surface" > <? echo $GLOBALS['lang']['scale']['surface'] ?> ( <?php echo SURFACE_UNIT; ?>) :</label>
<input name="surface" type="text" id="surface" maxlength="8" value=" <?php echo $form_surface; ?>" class="textfield" />
<label for="population" > <? echo $GLOBALS['lang']['scale']['population'] ?> :</label>
<input name="population" type="text" id="population" maxlength="8" value=" <?php echo $form_population; ?>" class="textfield" />
<label for="root_scale" > <? echo $GLOBALS['lang']['scale']['root'] ?> : *</label>
<?php echo $select_root; ?>
<label for="com_scale" > <? echo $GLOBALS['lang']['scale']['comment'] ?> : </label>
<textarea id="com_scale" name="com_scale" class="largetextfield" <?php echo AREA_SETTINGS; ?> > <?php echo $form_comment; ?></textarea>
<input name="rub" type="hidden" value=" <?php echo $rub; ?>" id="rub" />
<input name="todo" type="hidden" value=" <?php echo $todo; ?>" id="todo" />
<input name="valider" type="submit" value=" <? echo $GLOBALS['lang']['btn']['valid'] ?>" class="button" id="valider" />
<?php include_once($dir. "/help.php"); ?>
$display_form_surface= empty_nc($form_surface);
$display_form_population= empty_nc($form_population);
$data= $sql_object->DBSelect($requete);
$display_root_scale= formatText($data[0]['scale_denomination'], '2HTML');
<div class="contentcontainer">
include_once($dir. "/menurub.php");
<h2> <? echo formatTitleh2($GLOBALS['lang']['recap']['title']); ?></h2>
<dt> <? echo $GLOBALS['lang']['scale']['denomination']; ?> : </dt>
<dd> <?php echo $form_denomination; ?><br /></dd>
<dt> <? echo $GLOBALS['lang']['scale']['surface']; ?> ( <?php echo SURFACE_UNIT; ?>) :</dt>
<dd> <?php echo $display_form_surface; ?><br /></dd>
<dt> <? echo $GLOBALS['lang']['scale']['population']; ?> :</dt>
<dd> <?php echo $display_form_population; ?><br /></dd>
<dt> <? echo $GLOBALS['lang']['scale']['root']; ?> : </dt>
<dd> <?php echo $display_root_scale; ?><br /></dd>
<dt> <? echo $GLOBALS['lang']['scale']['comment']; ?> : </dt>
<dd> <?php echo $display_form_comment; ?><br /></dd>
<form id="addscale" action=" <?php echo $_SERVER['SCRIPT_NAME']; ?>" method="post">
<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" />
<input name="retour" type="button" value=" <? echo $GLOBALS['lang']['btn']['preview'] ?>" class="button" id="retour" onclick="history.go(-1);" />
<input name="enregistrer" type="submit" value=" <? echo $GLOBALS['lang']['btn']['save'] ?>" class="button" id="valider" />
<?php include_once($dir. "/help.php"); ?>
|