début ajout possibilité de déterminer si le contenu d'une catégorie sera visible ou
non dans la liste des produits/services, ceci afin de pouvoir cacher les sous-produits par exemple.
This commit is contained in:
parent
3476c934a7
commit
de5f76253c
@ -100,7 +100,7 @@ $cats = $c->get_main_categories ();
|
|||||||
if ($cats != -1)
|
if ($cats != -1)
|
||||||
{
|
{
|
||||||
print '<table class="noborder" width="100%">';
|
print '<table class="noborder" width="100%">';
|
||||||
print '<tr class="liste_titre"><td colspan="2">'.$langs->trans("MainCats").'</td></tr>';
|
print '<tr class="liste_titre"><td colspan="3">'.$langs->trans("MainCats").'</td></tr>';
|
||||||
|
|
||||||
foreach ($cats as $cat)
|
foreach ($cats as $cat)
|
||||||
{
|
{
|
||||||
@ -108,6 +108,16 @@ if ($cats != -1)
|
|||||||
print "\t<tr ".$bc[$i].">\n";
|
print "\t<tr ".$bc[$i].">\n";
|
||||||
print "\t\t<td><a href='viewcat.php?id=".$cat->id."'>".$cat->label."</a></td>\n";
|
print "\t\t<td><a href='viewcat.php?id=".$cat->id."'>".$cat->label."</a></td>\n";
|
||||||
print "\t\t<td>".$cat->description."</td>\n";
|
print "\t\t<td>".$cat->description."</td>\n";
|
||||||
|
|
||||||
|
if ($cat->visible == 1)
|
||||||
|
{
|
||||||
|
print "\t\t<td>".$langs->trans("ContentsVisibleByAllShort")."</td>\n";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print "\t\t<td>".$langs->trans("ContentsNoVisibleByAllShort")."</td>\n";
|
||||||
|
}
|
||||||
|
|
||||||
print "\t</tr>\n";
|
print "\t</tr>\n";
|
||||||
}
|
}
|
||||||
print "</table>";
|
print "</table>";
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user