Source for file det.php
Documentation is available at det.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");  
if(isset ($_POST['id']))    $id= $_POST['id'];  
if(isset ($_GET['id']))    $id= $_GET['id'];  
include_once("../lib/lib_common.php");   
$result= $sql_object->DBSelect($req_det);  
$current_title= $result[0]['level_name'];  
$display_desc= formatText($result[0]['level_description'], '2HTML');  
$display_range= $result[0]['level_range'];  
$display_date_crea= $result[0]['level_date_crea'];  
$display_last_modify= $result[0]['level_last_modify'];  
// formattage des donnĂ©es  
if(!empty($result[0]['level_visual_identity'])) {  
    $complete_uri= "../". $result[0]['level_visual_identity'];  
} else $complete_uri= _t('divers','novisu');  
$link_det= $rub_link. "&todo=det&id=";   
$link_mod= $rub_link. "&todo=mod&id=";  
            <a href="index.php" class="chemin_home"> <?php echo  _t('way','home'); ?></a>  
               <a href=" <?php echo  $rub_link; ?>" id="chemin_ <? echo  $rub; ?>" class="chemin_rub"> <?php echo  _t('menu','level'); ?></a>  
            <span> <?php echo  formatNavTitle(_t('level','det'). " : ". $current_title); ?></span>  
include_once(THEME_ADMIN_PATH. "quickicons.php");  
<div class="contentcontainer">  
include_once($dir. "/menurub.php");  
        echo  "\t<a href=\"". $link_mod. $id. "\" title=\"". _t('level','mod'). "\" class=\"ico_mod2\"></a>\n"; 
        <dt> <?php echo  _t('level','description'); ?> :</dt>  
        <dd> <?php echo  $display_desc; ?></dd>  
        <dt> <?php echo  _t('level','comment'); ?> : </dt>  
        <dd> <?php echo  $display_comment;?></dd>  
        <dt> <?php echo  _t('level','visual_identity'); ?> : </dt>  
        <dd> <?php echo  $complete_uri; ?></dd>  
        <dt> <?php echo  _t('divers','range'); ?> : </dt>  
        <dd> <?php echo  $display_range;?></dd>  
        <dt> <?php echo  _t('divers','last_modify'); ?> :</dt>  
        <dd> <?php echo  $display_last_modify;?></dd>  
        <dt> <?php echo  _t('divers','date_crea'); ?> :</dt>  
        <dd> <?php echo  $display_date_crea; ?></dd>  
        <dt> <?php echo  _t('divers','statut'); ?>  :</dt>  
        <dd> <?php echo  $display_status;?></dd>  
<?php include_once($dir. "/help.php"); ?>  
 
 
        
       |