Source for file det.php
Documentation is available at det.php
* @package linea21.modules
* @author linea21 <info@linea21.com>
* @license http://opensource.org/licenses/gpl-3.0.html
//////////// Check Inclusion de pages ////////////
include_once("../lib/lib_common.php");
//////////// Check Droits utilisateur ////////////
if (isset ($_GET['id'])) $id = $_GET['id'];
if (isset ($_POST['id'])) $id = $_POST['id'];
$result = $sql_object->DBSelect($req_det);
if ($result == 0 || count($result) != 1) exit;
$display_title = formatText($result[0]['news_title'], '2HTML');
$display_theme = formatText($result[0]['theme_name'], '2HTML');
$display_scale = formatText($result[0]['scale_denomination'], '2HTML');
$display_user = formatText($result[0]['user_login'], '2HTML');
$display_date_crea = $result[0]['news_date_crea_display'];
$display_last_modify = $result[0]['news_last_modify_display'];
$news_theme_id= $result[0]['news_theme'];
$news_scale_id= $result[0]['news_scale'];
$news_level_id= $result[0]['news_level'];
$news_owner = $result[0]['news_posted_by'];
if ($result[0]['news_published_date_display'] == '01-01-0001') $display_published_date = _t('statut','draft');
else $display_published_date = $result[0]['news_published_date_display'];
$link_sup = $rub_link . "&todo=sup&id=";
$link_mod = $rub_link . "&todo=mod&id=";
<li><a href="index.php" class="chemin_home"> <?php echo _t('way','home'); ?>
<li><a href=" <?php echo $rub_link; ?>" id="chemin_ <?php echo $rub; ?>"
class="chemin_rub"> <?php echo _t('menu','news'); ?> </a></li>
<li><span> <?php echo formatNavTitle(_t('news','det') . " : " . $display_title); ?></span>
include_once(THEME_ADMIN_PATH. "quickicons.php");
<div class="contentcontainer"> <?php
include_once($dir . "/menurub.php");
echo "\t<a href=\"" . $link_sup . $id . "\" class=\"ico_sup2\" title=\"" . _t('news','sup') . "\"></a>\n";
echo "\t<a href=\"" . $link_mod . $id . "\" class=\"ico_mod2\" title=\"" . _t('news','mod') . "\"></a>\n";
echo "<dl class=\"dl3\">\n";
echo "<dt>" . _t('news','title') . "</dt>\n";
echo "<dd>" . $display_title . "</dd>\n";
echo "<dt>" . _t('news','header') . "</dt>\n";
echo "<dd>" . $display_header . "</dd>\n";
echo "<dt>" . _t('news','body') . " :</dt>\n";
echo "<dd>" . $display_body . "</dd>\n";
echo "<dt>" . _t('news','theme') . " :</dt>\n";
echo '<dd><a href="?rub=theme&todo=det&id='. $news_theme_id. '">' . $display_theme . '</a></dd>'. END_LINE;
echo "<dt>" . _t('news','scale') . " :</dt>\n";
echo '<dd><a href="?rub=scale&todo=det&id='. $news_scale_id. '">' . $display_scale . '</a></dd>'. END_LINE;
echo "<dt>" . _t('news','level') . " :</dt>\n";
if($news_level_id <> - 1) echo '<dd><a href="?rub=level&todo=det&id='. $news_level_id. '">' . $display_level . '</a></dd>'. END_LINE;
else echo '<dd>' . $display_level . '</dd>'. END_LINE;
echo "<dt>" . _t('news','author') . " :</dt>\n";
echo '<dd><a href="?rub=user&todo=det&id='. $news_owner. '">' . $display_user . '</a></dd>'. END_LINE;
echo "<dt>" . _t('news','theme') . " :</dt>\n";
echo "<dd>" . $display_theme . "</dd>\n";
echo "<dt>" . _t('news','scale') . " :</dt>\n";
echo "<dd>" . $display_scale . "</dd>\n";
echo "<dt>" . _t('news','level') . " :</dt>\n";
echo "<dd>" . $display_level . "</dd>\n";
echo "<dt>" . _t('news','author') . " :</dt>\n";
echo "<dd>" . $display_user . "</dd>\n";
echo "<dt>" . _t('statut','published_on') . "</dt>\n";
echo "<dd>" . $display_published_date . "</dd>\n";
echo "<dt>" . _t('divers','date_crea') . "</dt>\n";
echo "<dd>" . $display_date_crea . "</dd>\n";
echo "<dt>" . _t('divers','last_modify') . "</dt>\n";
echo "<dd>" . $display_last_modify . "</dd>\n";
echo "<dt>" . _t('divers','statut') . "</dt>\n";
echo "<dd>" . $display_statut . "</dd>\n";
<?php include_once($dir . "/help.php");
|