Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: [Robo] display category path in link.html

Quote Reply
Re: [Robo] display category path in link.html In reply to
You are right, it was actually only giving one category... and I haven't noticed it all the time....

Anyway, the follwoing works on my site, so it should also on yours,
Code:
sub {
my $id = shift;
my $cat_db = $DB->table('Category');
my $catlink = $DB->table('CatLinks','Category');
my @names = $catlink->select ({ LinkID => $id }, ['Full_Name'])->fetchall_list;
my @link_cats;
for (@names) {
push @link_cats, { cat_name => Links::Build::build ('title_unlinked',$_), cat_url => $cat_db->as_url($_)};
}
return { link_cats => \@link_cats };
}
Of course I have an interesting homepage Cool

Ivan
-----
Iyengar Yoga Resources / GT Plugins

Last edited by:

yogi: Jul 26, 2002, 1:07 AM
Subject Author Views Date
Thread display category path in link.html jeremy_ohp 10034 Jul 21, 2001, 5:37 PM
Thread Re: display category path in link.html
poil11 9917 Jul 24, 2001, 10:21 AM
Post Re: [poil11] display category path in link.html
Nomada 9699 Mar 19, 2002, 9:44 AM
Thread Re: [poil11] display category path in link.html
Robo 9528 Jul 25, 2002, 5:21 AM
Thread Re: [Robo] display category path in link.html
yogi 9551 Jul 25, 2002, 5:29 AM
Thread Re: [yogi] display category path in link.html
Paul 9569 Jul 25, 2002, 5:30 AM
Thread Re: [Paul] display category path in link.html
yogi 9508 Jul 25, 2002, 5:31 AM
Post Re: [yogi] display category path in link.html
Paul 9491 Jul 25, 2002, 5:35 AM
Thread Re: [yogi] display category path in link.html
Robo 9558 Jul 25, 2002, 7:05 AM
Thread Re: [Robo] display category path in link.html
yogi 9606 Jul 25, 2002, 1:27 PM
Thread Re: [yogi] display category path in link.html
Robo 9543 Jul 26, 2002, 12:48 AM
Thread Re: [Robo] display category path in link.html
yogi 9511 Jul 26, 2002, 1:04 AM
Thread Re: [yogi] display category path in link.html
Robo 9562 Jul 26, 2002, 2:13 AM
Thread Re: [Robo] display category path in link.html
Robo 9517 Jul 26, 2002, 6:24 AM
Post Re: [Robo] display category path in link.html
gatman 9222 Dec 27, 2002, 8:32 AM
Post Re: [Robo] display category path in link.html
lobito 8179 Oct 5, 2006, 8:55 AM