Blog
Documentation
Book a Demo
toggle menu
Categories
Discussions
Activity
Best Of...
Sign In
Sign In
Categories
Discussions
Activity
Best Of...
Sign In
×
Home
›
Vanilla 1.0 Help
Discussion
Panel Categories
Author
Date within
1 day
3 days
1 week
2 weeks
1 month
2 months
6 months
1 year
of
Examples: Monday, today, last week, Mar 26, 3/26/04
Search
Panel Categories
ithcy
New
August 2006
edited August 2006
in
Vanilla 1.0 Help
Panel Categories
0
Comments
DCrovâ
June 2007
Any update on this extension-I cannot see half the categories in the list when I run this extension. Refreshing the page helped at first, but now the list has completely vanished. Any thoughts?
0
yann
November 2009
http://vanillaforums.org/discussion/10231/highlight-category-in-panel./#Item_1
@ithcy
: which one would you rather I did?
0
yann
November 2009
I have a patch to sort the categories alphabetically. It is attached at the bottom, hopefully it won't look horrid.
@ithcy
: I could send you the patch via email if you wanted to include it in the next release.
41,43d40
< $list = array();
< $desc = array();
< $curr = "";
61,72c58,63
< $list[$Row['Name']] = $thisURL;
< $desc[$Row['Name']] = nicetrim($Row['Description'], $MaxDescriptionLength);
< if ($CurrentCategory == $Row['CategoryID'])
< {
< $curr = $Row['Name'];
< }
< //$PanelCatNameVar = ($CurrentCategory == $Row['CategoryID'])? "PanelCatNameCurrent" : "PanelCatName";
< //$PanelCategoryList .= "\t\t\t
{$Row['Name']}
\n";
< //if ($ShowCatDescriptions)
< //{
< // $PanelCategoryList .= "\t\t\t" . nicetrim($Row['Description'], $MaxDescriptionLength) . "\n";
< //}
---
> $PanelCatNameVar = ($CurrentCategory == $Row['CategoryID'])? "PanelCatNameCurrent" : "PanelCatName";
> $PanelCategoryList .= "\t\t\t
{$Row['Name']}
\n";
> if ($ShowCatDescriptions)
> {
> $PanelCategoryList .= "\t\t\t" . nicetrim($Row['Description'], $MaxDescriptionLength) . "\n";
> }
75,85d65
< ksort($list);
< foreach ($list as $key => $value)
< {
< $PanelCatNameVar = ($key == $curr)? "PanelCatNameCurrent" : "PanelCatName";
< $PanelCategoryList .= "\t\t\t
{$key}
\n";
< if ($ShowCatDescriptions)
< {
< $PanelCategoryList .= "\t\t\t" . $desc[$key] . "\n";
< }
< }
<
0
Sign In
or
Register
to comment.
Comments
@ithcy: which one would you rather I did?
@ithcy: I could send you the patch via email if you wanted to include it in the next release.
41,43d40
< $list = array();
< $desc = array();
< $curr = "";
61,72c58,63
< $list[$Row['Name']] = $thisURL;
< $desc[$Row['Name']] = nicetrim($Row['Description'], $MaxDescriptionLength);
< if ($CurrentCategory == $Row['CategoryID'])
< {
< $curr = $Row['Name'];
< }
< //$PanelCatNameVar = ($CurrentCategory == $Row['CategoryID'])? "PanelCatNameCurrent" : "PanelCatName";
< //$PanelCategoryList .= "\t\t\t{$Row['Name']}\n";
< //if ($ShowCatDescriptions)
< //{
< // $PanelCategoryList .= "\t\t\t" . nicetrim($Row['Description'], $MaxDescriptionLength) . "\n";
< //}
---
> $PanelCatNameVar = ($CurrentCategory == $Row['CategoryID'])? "PanelCatNameCurrent" : "PanelCatName";
> $PanelCategoryList .= "\t\t\t{$Row['Name']}\n";
> if ($ShowCatDescriptions)
> {
> $PanelCategoryList .= "\t\t\t" . nicetrim($Row['Description'], $MaxDescriptionLength) . "\n";
> }
75,85d65
< ksort($list);
< foreach ($list as $key => $value)
< {
< $PanelCatNameVar = ($key == $curr)? "PanelCatNameCurrent" : "PanelCatName";
< $PanelCategoryList .= "\t\t\t{$key}\n";
< if ($ShowCatDescriptions)
< {
< $PanelCategoryList .= "\t\t\t" . $desc[$key] . "\n";
< }
< }
<