Source for file add_link.php
Documentation is available at add_link.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->AddLinkRes($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['link_url'];  
    $table[1]= $_POST['link_url_mask'];  
    $integrity= $resources_object->CheckDataIntegrity($table,'LINK');  
    $form_url= formatText($_POST['link_url'], $text_format);  
    $form_url_mask= formatText($_POST['link_url_mask'], $text_format);  
include_once("quickicons.php");  
if(!isset ($integrity) ||  is_string($integrity)) {  
<div class="contentcontainer">  
        include_once($dir. "/menurub.php");  
            <form id="addlink" action=" <?php echo  $_SERVER['SCRIPT_NAME']; ?>" method="post">  
                <label for="link_url"> <? echo  $GLOBALS['lang']['resources']['url']; ?> : *</label>  
                <input name="link_url" type="text" class="textfield" id="link_url" maxlength="1000" value=" <?php echo  $form_url; ?>" />  
                <label for="link_url_mask"> <? echo  $GLOBALS['lang']['resources']['url_mask']; ?> : </label>  
                <input name="link_url_mask" type="text" class="textfield" id="link_url_mask" maxlength="200" value=" <?php echo  $form_url_mask; ?>" />  
                <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"); ?>  
if(trim($form_url_mask)== '') {  
    $form_url_mask= $GLOBALS['lang']['divers']['none'];  
    $display_visual_test= "<a href=\"". $form_url. "\" class=\"out\">". $form_url. "</a>";  
    $display_visual_test= "<a href=\"". $form_url. "\" class=\"out\">". $form_url_mask. "</a>";  
<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']['url']. "</dt>\n"; 
            echo  "<dd>". $form_url. "</dd>\n"; 
            echo  "<dt>". $GLOBALS['lang']['resources']['url_mask']. "</dt>\n"; 
            echo  "<dd>". $form_url_mask. "</dd>\n"; 
            echo  "<dt>". $GLOBALS['lang']['resources']['url_visual_test']. "</dt>\n"; 
            echo  "<dd>". $display_visual_test. "</dd>\n"; 
            <form id="addlink" 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"); ?>  
 
 
        
       |