Source for file add_biblio.php
Documentation is available at add_biblio.php
* @package linea21.modules
* @author linea21 <info@linea21.com>
* @license http://opensource.org/licenses/gpl-3.0.html
* 'Resource' module is used by 'Publication' and 'Workshop' modules
//////////// Check Inclusion de pages ////////////
include_once("../lib/lib_common.php");
$result= $sql_object->DBSelect($requete);
$current_title= FormatText($result[0]['publi_title'], '2HTML');
$publi_owner= $result[0]['publi_posted_by'];
//////////// Check Droits utilisateur ////////////
$result= $sql_object->DBSelect($requete);
$current_title= FormatText($result[0]['workrep_title']. ' ('. $result[0]['workshop_denomination']. ')', '2HTML');
$workshop_id= $result[0]['workrep_workshop_id'];
//////////// Check Droits utilisateur ////////////
<a href="index.php"> <? echo $GLOBALS['lang']['way']['home']; ?></a>
<a href=" <?php echo $rub_link; ?>"> <? echo $GLOBALS['lang']['menu'][$mod_inc]; ?></a>
<span> <? echo formatNavTitle($GLOBALS['lang']['resources'][$mod_inc. '_type']. " : ". $current_title); ?></span>
if(isset ($_POST['enregistrer'])) {
$result= $resources_object->AddBiblioRes($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['biblio_author'];
$table[1]= $_POST['biblio_title'];
$table[2]= $_POST['biblio_sub_title'];
$table[3]= $_POST['biblio_editor'];
$table[4]= $_POST['biblio_published_date'];
$integrity= $resources_object->CheckDataIntegrity($table,'BIBLIO');
$form_author= formatText($_POST['biblio_author'], $text_format);
$form_title= formatText($_POST['biblio_title'], $text_format);
$form_sub_title= formatText($_POST['biblio_sub_title'], $text_format);
$form_editor= formatText($_POST['biblio_editor'], $text_format);
$form_published_date= formatText($_POST['biblio_published_date'], $text_format);
include_once("quickicons.php");
if(!isset ($integrity) || is_string($integrity)) {
<div class="contentcontainer">
include_once($dir. "/menurub.php");
<form id="addbiblio" action=" <?php echo $_SERVER['SCRIPT_NAME']; ?>" method="post">
<label for="biblio_author"> <? echo $GLOBALS['lang']['resources']['biblio_author']; ?> : *</label>
<input name="biblio_author" type="text" class="textfield" id="biblio_author" maxlength="200" value=" <?php echo $form_author; ?>" />
<label for="biblio_title"> <? echo $GLOBALS['lang']['resources']['biblio_title']; ?> : *</label>
<input name="biblio_title" type="text" class="textfield" id="biblio_title" maxlength="255" value=" <?php echo $form_title; ?>" />
<label for="biblio_sub_title"> <? echo $GLOBALS['lang']['resources']['biblio_sub_title']; ?> : </label>
<input name="biblio_sub_title" type="text" class="textfield" id="biblio_sub_title" maxlength="255" value=" <?php echo $form_sub_title; ?>" />
<label for="biblio_editor"> <? echo $GLOBALS['lang']['resources']['biblio_editor']; ?> : </label>
<input name="biblio_editor" type="text" class="textfield" id="biblio_editor" maxlength="255" value=" <?php echo $form_editor; ?>" />
<label for="biblio_published_date"> <? echo $GLOBALS['lang']['resources']['biblio_published_date']; ?> : </label>
<input name="biblio_published_date" type="text" class="textfield" id="biblio_published_date" maxlength="100" value=" <?php echo $form_published_date; ?>" />
<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=" <? echo $GLOBALS['lang']['btn']['valid'] ?>" class="button" id="valider" />
<?php include_once($dir. "/help.php"); ?>
$display_published_date= empty_none($form_published_date);
<div class="contentcontainer">
include_once($dir. "/menurub.php");
<h2> <? echo formatTitleh2($GLOBALS['lang']['recap']['title']); ?></h2>
echo "<dl class=\"dl3\">\n";
echo "<dt>". $GLOBALS['lang']['resources']['biblio_author']. "</dt>\n";
echo "<dd>". $form_author. "</dd>\n";
echo "<dt>". $GLOBALS['lang']['resources']['biblio_title']. "</dt>\n";
echo "<dd>". $form_title. "</dd>\n";
echo "<dt>". $GLOBALS['lang']['resources']['biblio_sub_title']. "</dt>\n";
echo "<dd>". $display_sub_title. "</dd>\n";
echo "<dt>". $GLOBALS['lang']['resources']['biblio_editor']. "</dt>\n";
echo "<dd>". $display_editor. "</dd>\n";
echo "<dt>". $GLOBALS['lang']['resources']['biblio_published_date']. "</dt>\n";
echo "<dd>". $display_published_date. "</dd>\n";
<form id="addbiblio" 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=" <? 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"); ?>
|