Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: [AtoZ] Detailed pag printing Links and Categories too?

Quote Reply
Re: [AtoZ] Detailed pag printing Links and Categories too? In reply to
Here is one solution:

http://www.gossamer-threads.com/...i?post=193600#193600

But as I said at the time, I dont think it is very efficient. I'm using it on my site. Obviously you could change the output so that it gives the output as you specified like this:

sub {
my $tags = shift;
my $cat_id = $tags->{'ID'};
my $name = $tags->{'Name'};
my $link_db = $DB->table('Links','CatLinks');
$link_db->select_options ("ORDER BY $CFG->{build_sort_order_category}");
my $sth = $link_db->select ( { CategoryID => $cat_id, isValidated => 'Yes' });

my $output = qq~ <b>$name:</b><br> ~;

while (my $link = $sth->fetchrow_hashref) {
$output .= qq~ <li>$link->{'Title'} ~;
}

my $cat_db = $DB->table('Category');
my $sth2 = $cat_db->select ( ['ID','Name'],{ FatherID => $cat_id });

while (my ($child_id,$subname) = $sth2->fetchrow_array){
$output .= qq~ <br><br><b>$subname:</b><br> ~;

my $sth3 = $link_db->select ( { CategoryID => $child_id, isValidated => 'Yes' });

while (my $link2 = $sth3->fetchrow_hashref) {
$output .= qq~ <li>$link2->{'Title'} ~;
}
}

return $output;
}


What I actually want is all the links in a sortable list rather than by subcategory but I can't see how to do it. I also have lots of links in several categories which appear several times in my dropdown list which is a bit annoying. Anyway, hope it helps you,

Laura.
Subject Author Views Date
Thread Detailed pag printing Links and Categories too? Evoir 21401 Dec 13, 2001, 10:23 AM
Thread Re: [Evoir] Detailed pag printing Links and Categories too?
pugdog 20888 Dec 13, 2001, 10:28 AM
Thread Re: [pugdog] Detailed pag printing Links and Categories too?
Evoir 20792 Dec 13, 2001, 11:10 AM
Thread Re: [Evoir] Detailed pag printing Links and Categories too?
Alex 20929 Dec 13, 2001, 12:24 PM
Post Re: [Alex] Detailed pag printing Links and Categories too?
Evoir 20774 Dec 13, 2001, 12:31 PM
Thread Re: [Alex] Detailed pag printing Links and Categories too?
Robert 20684 Feb 17, 2002, 10:39 AM
Thread Re: [Robert] Detailed pag printing Links and Categories too?
AtoZ 20594 Jun 20, 2002, 9:06 PM
Thread Re: [AtoZ] Detailed pag printing Links and Categories too?
flasi 20578 Jun 27, 2002, 1:51 AM
Thread Re: [flasi] Detailed pag printing Links and Categories too?
afinlr 20450 Jun 29, 2002, 5:46 PM
Thread Re: [afinlr] Detailed pag printing Links and Categories too?
flasi 20450 Jul 1, 2002, 3:34 AM
Post Re: [flasi] Detailed pag printing Links and Categories too?
afinlr 20431 Jul 1, 2002, 4:00 AM
Thread Re: [flasi] Detailed pag printing Links and Categories too?
klauslovgreen 20074 Dec 20, 2002, 4:04 AM
Thread Re: [klauslovgreen] Detailed pag printing Links and Categories too?
flasi 20066 Dec 20, 2002, 4:37 AM
Post Re: [flasi] Detailed pag printing Links and Categories too?
klauslovgreen 20101 Dec 20, 2002, 5:14 AM
Post Re: [flasi] Detailed pag printing Links and Categories too?
klauslovgreen 20042 Dec 20, 2002, 6:38 AM
Post Re: [flasi] Detailed pag printing Links and Categories too?
klauslovgreen 20098 Dec 22, 2002, 8:32 AM
Post Re: [flasi] Detailed pag printing Links and Categories too?
nt6 20454 Jul 1, 2002, 5:06 AM
Post Re: [AtoZ] Detailed pag printing Links and Categories too?
afinlr 20432 Jun 29, 2002, 4:44 PM
Post Re: [Alex] Detailed pag printing Links and Categories too?
nt6 20273 Aug 20, 2002, 6:52 AM
Thread Re: [Alex] Detailed pag printing Links and Categories too?
craven32 19647 Sep 30, 2003, 9:53 PM
Thread Re: [craven32] Detailed pag printing Links and Categories too?
craven32 19601 Oct 1, 2003, 10:25 PM
Thread Re: [craven32] Detailed pag printing Links and Categories too?
yogi 19543 Oct 1, 2003, 10:53 PM
Post Re: [yogi] Detailed pag printing Links and Categories too?
craven32 19544 Oct 2, 2003, 7:51 AM
Thread Re: [Alex] Detailed pag printing Links and Categories too?
mick31 19333 Apr 26, 2004, 5:11 AM
Thread Re: [mick31] Detailed pag printing Links and Categories too?
carminejg3 18841 Apr 28, 2006, 12:37 AM
Post Re: [carminejg3] Detailed pag printing Links and Categories too?
afinlr 5221 May 4, 2006, 3:47 PM
Thread Re: [carminejg3] Detailed pag printing Links and Categories too?
Eraser 5217 May 26, 2006, 10:46 AM
Post Re: [Eraser] Detailed pag printing Links and Categories too?
afinlr 5153 May 29, 2006, 12:15 PM
Thread Re: [carminejg3] Detailed pag printing Links and Categories too?
Bruha 5206 Nov 22, 2006, 11:31 AM
Post Re: [Bruha] Detailed pag printing Links and Categories too?
Bruha 5097 Dec 4, 2006, 1:51 PM
Post Re: [carminejg3] Detailed pag printing Links and Categories too?
Robert 4130 Aug 1, 2016, 2:10 PM