Source for file list.php
Documentation is available at list.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");
$current_title= _t('scale','list');
$result= $sql_object->DBSelect($req_list2);
$link_sup= $rub_link. "&todo=sup&id=";
$link_mod= $rub_link. "&todo=mod&id=";
$link_det= $rub_link. "&todo=det&id=";
if (!$dep && !$prev_dep) $html .= "\n<ul>\n";
foreach ($array as $item) {
$current_id= $item['scale_id'];
$current_denomination= formatText($item['scale_denomination'], '2HTML');
if ($parent == $item['scale_root']) {
if ($prev_dep < $dep) $html .= "\n<ul>\n";
$link = "\t<a href=\"". $link_det. $current_id. "\">". $current_denomination. "</a>\n";
if ($item['scale_root'] != 0) $link.= "\t<a href=\"". $link_sup. $current_id. "\" class=\"ico_sup\" title=\"". _t('scale','sup'). "\"></a>\n";
$link.= "\t<a href=\"". $link_mod. $current_id. "\" class=\"ico_mod\" title=\"". _t('scale','mod'). "\"></a>\n";
$html .= "<li class=\"contextual-menu li". $dep. "\">" . $link;
$html .= display_scale($item['scale_id'], ($dep + 1), $array, $rub_link);
if (($prev_dep == $dep) && ($prev_dep != 0)) $html .= "</ul>\n</li>\n";
else if ($prev_dep == $dep) $html .= "</ul>\n";
<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','scale'); ?></a></li>
<li><span> <?php echo formatnavTitle($current_title); ?></span></li>
include_once(THEME_ADMIN_PATH. "quickicons.php");
<div class="contentcontainer"> <?php include_once($dir. "/menurub.php"); ?>
<h2><span class="semnone"> <?php echo formatTitleh2($current_title) ;?></span></h2>
<?php include_once($dir. "/help.php"); ?></div>
|