Panel Categories

New
edited August 2006 in Vanilla 1.0 Help
Panel Categories

Comments

  • 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?
  • 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.