Vanilla Forums
Home
Addons
Community
Documentation
Blog
Hosting
Download
Home
»
Questions
Activity
•
Sign In
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Categories
All Categories
16.1K
Questions
15.6K
Feedback
349
Developers
49
Localization
49
Blog
15
Categories
Recent Discussions
In this Discussion
DCrovâ
June 2007
yann
November 2009
Who's Online
7
+
5
guests
Panel Categories
ithcy
August 2006
in
Questions
This discussion is related to the
Panel Categories
addon.
Panel Categories
Comments
DCrovâ
June 2007
Posts: 2
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?
yann
November 2009
Posts: 59
http://vanillaforums.org/discussion/10231/highlight-category-in-panel./#Item_1
@ithcy
: which one would you rather I did?
yann
November 2009
Posts: 59
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";
< }
< }
<
Sign In
or
Register
to comment.
Host Your Community With Us
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";
< }
< }
<