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 ////////////
<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('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(THEME_ADMIN_PATH. "quickicons.php");
if(!isset ($integrity) || is_string($integrity)) {
<div class="contentcontainer"> <?php
include_once($dir. "/menurub.php");
<form id="addbiblio" action=" <?php echo $_SERVER['SCRIPT_NAME']; ?>"
<p><label for="biblio_author"> <?php echo _t('resources','biblio_author'); ?>
: *</label> <input name="biblio_author" type="text" class="textfield"
id="biblio_author" maxlength="200" value=" <?php echo $form_author; ?>" />
<p><label for="biblio_title"> <?php echo _t('resources','biblio_title'); ?>
: *</label> <input name="biblio_title" type="text" class="textfield"
id="biblio_title" maxlength="255" value=" <?php echo $form_title; ?>" />
<p><label for="biblio_sub_title"> <?php echo _t('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; ?>" /></p>
<p><label for="biblio_editor"> <?php echo _t('resources','biblio_editor'); ?>
: </label> <input name="biblio_editor" type="text" class="textfield"
id="biblio_editor" maxlength="255" value=" <?php echo $form_editor; ?>" />
<p><label for="biblio_published_date"> <?php echo _t('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; ?>" /></p>
<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="type"
type="hidden" value=" <?php echo $type; ?>" id="type" /> <input
name="parent" type="hidden" value=" <?php echo $parent; ?>" id="parent" />
type="submit" value=" <?php echo _t('btn','valid') ?>" class="button"
<?php include_once($dir. "/help.php"); ?></div>
$display_published_date= empty_none($form_published_date);
<div class="contentcontainer"> <?php
include_once($dir. "/menurub.php");
echo "<dl class=\"dl3\">\n";
echo "<dt>". _t('resources','biblio_author'). "</dt>\n";
echo "<dd>". $form_author. "</dd>\n";
echo "<dt>". _t('resources','biblio_title'). "</dt>\n";
echo "<dd>". $form_title. "</dd>\n";
echo "<dt>". _t('resources','biblio_sub_title'). "</dt>\n";
echo "<dd>". $display_sub_title. "</dd>\n";
echo "<dt>". _t('resources','biblio_editor'). "</dt>\n";
echo "<dd>". $display_editor. "</dd>\n";
echo "<dt>". _t('resources','biblio_published_date'). "</dt>\n";
echo "<dd>". $display_published_date. "</dd>\n";
<form id="addbiblio" 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="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" /> <?php echo cancel_button($cancel_link); ?> <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>
|