Source for file add.php
Documentation is available at add.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");
if(isset ($_POST['enregistrer'])) {
$result= $contents_object->AddContents($parent, $data_table, $complete_type, $sql_object);
$link_confirm= "confirm.php?rub=". $rub. "&todo=". $todo. "&type=". $type. "&id=". $parent;
if($result=== true) header("Location: ". $link_confirm);
if(isset ($_POST['valider'])) {
$table[0]= $_POST['part_title'];
$table[1]= $_POST['part_body'];
$integrity= $contents_object->CheckDataIntegrity($table,$type);
$form_title= formatText($_POST['part_title'], $text_format);
$form_body= formatText($_POST['part_body'], $text_format);
$result= $sql_object->DBSelect($requete);
$current_title= FormatText($result[0]['publi_title']);
$publi_owner= $result[0]['publi_posted_by'];
//////////// Check Droits utilisateur ////////////
$result= $sql_object->DBSelect($requete);
$current_title= FormatText($result[0]['workrep_title']). ' ('. FormatText($result[0]['workshop_denomination']). ')';
$workshop_id= $result[0]['workrep_workshop_id'];
//////////// Check Droits utilisateur ////////////
<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',$mod_inc)?></a></li>
<li><span> <?php echo formatNavTitle(_t('contents',$mod_inc. '_type'). " : ". $current_title); ?></span>
include_once(THEME_ADMIN_PATH. "quickicons.php");
if(!isset ($integrity) || is_string($integrity)) {
<div class="contentcontainer"> <?php
include_once($dir. "/menurub.php");
<h2> <?php echo formatTitleh2(_t('contents',$mod_inc. '_type'). " : ". $current_title); ?></h2>
<form id="addpart" action=" <?php echo $_SERVER['SCRIPT_NAME']; ?>" method="post">
<label for="part_title"> <?php echo _t('contents','title'); ?> : *</label>
<input name="part_title" type="text" class="textfield" id="part_title" maxlength="200" value=" <?php echo $form_title; ?>" />
<label for="part_body"> <?php echo _t('contents','body'); ?> : *</label>
<textarea id="part_body" name="part_body" class="largetextfield" <?php echo AREA_SETTINGS; ?>> <?php echo $form_body; ?></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="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=" <?php echo _t('btn','valid') ?>" class="button" id="valider" />
<?php include_once($dir. "/help.php"); ?></div>
<div class="contentcontainer"> <?php
include_once($dir. "/menurub.php");
<h2> <?php echo _t('recap','title') ?></h2>
echo "<dl class=\"dl3\">\n";
echo "<dt>". _t('contents','title'). "</dt>\n";
echo "<dd>". $form_title. "</dd>\n";
echo "<dt>". _t('contents','body'). "</dt>\n";
<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="type" type="hidden" value=" <?php echo $type; ?>" id="type" />
<input name="parent" type="hidden" value=" <?php echo $parent; ?>" id="parent" />
<input name="data_table" type="hidden" value=" <?php echo $table; ?>" id="data_table" />
<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" />
<?php include_once($dir. "/help.php"); ?></div>
|