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");
<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 formatnavTitle(_t('scale','add')); ?></span></li>
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(THEME_ADMIN_PATH. "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"> <?php
include_once($dir. "/menurub.php");
<form id="addscale" 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>
<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="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);
$data= $sql_object->DBSelect($requete);
$display_root_scale= formatText($data[0]['scale_denomination'], '2HTML');
<div class="contentcontainer"> <?php
include_once($dir. "/menurub.php");
<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 />
<dt> <?php echo _t('scale','root'); ?> :</dt>
<dd> <?php echo $display_root_scale; ?><br />
<dt> <?php echo _t('scale','comment'); ?> :</dt>
<dd> <?php echo $display_form_comment; ?><br />
<form id="addscale" action=" <?php echo $_SERVER['SCRIPT_NAME']; ?>"
<div><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='. $rub. '&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>
|