Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: [gmoney] Categories listed on Modify page.

Quote Reply
Re: [gmoney] Categories listed on Modify page. In reply to
Here is a global which I use to show category or categories below link
Hope that helps.


Code:
sub {
my ($rec) = @_;
my $id = $rec->{ID};
my $db = $DB->table ('Category','CatLinks');
my $sth = $db->select ( { 'CatLinks.LinkID' => $id }, ['Category.ID', 'Category.Full_Name'] );
my $cat;
while (my ($id,$name) = $sth->fetchrow_array) {
my $title = Links::Build::build ('title_linked', { name => $name, complete => 1 });
$cat .= "".$title."<br />";
}
return $cat;
}
Subject Author Views Date
Thread; hot thread Categories listed on Modify page. gmoney 12326 Jun 29, 2010, 11:35 AM
Thread; hot thread Re: [gmoney] Categories listed on Modify page.
Payooo 12133 Jun 29, 2010, 1:42 PM
Thread; hot thread Re: [Payooo] Categories listed on Modify page.
Andy 12185 Jun 29, 2010, 11:11 PM
Post; hot thread Re: [Andy] Categories listed on Modify page.
Payooo 12110 Jun 30, 2010, 12:31 AM
Thread; hot thread Re: [Andy] Categories listed on Modify page.
gmoney 12109 Jun 30, 2010, 4:14 AM
Thread; hot thread Re: [gmoney] Categories listed on Modify page.
Andy 12134 Jun 30, 2010, 5:06 AM
Thread; hot thread Re: [Andy] Categories listed on Modify page.
gmoney 12161 Jun 30, 2010, 6:20 AM
Thread; hot thread Re: [gmoney] Categories listed on Modify page.
Andy 12131 Jun 30, 2010, 6:22 AM
Thread; hot thread Re: [Andy] Categories listed on Modify page.
gmoney 12138 Jun 30, 2010, 6:30 AM
Thread; hot thread Re: [gmoney] Categories listed on Modify page.
Andy 12164 Jun 30, 2010, 6:32 AM
Post; hot thread Re: [Andy] Categories listed on Modify page.
gmoney 12096 Jun 30, 2010, 6:37 AM
Post; hot thread Re: [Andy] Categories listed on Modify page.
gmoney 12098 Jun 30, 2010, 6:56 AM
Thread; hot thread Re: [Andy] Categories listed on Modify page.
gmoney 12115 Jun 30, 2010, 7:09 AM
Thread; hot thread Re: [gmoney] Categories listed on Modify page.
Payooo 12113 Jun 30, 2010, 7:20 AM
Post; hot thread Re: [Payooo] Categories listed on Modify page.
gmoney 12084 Jun 30, 2010, 7:22 AM
Post; hot thread Re: [Payooo] Categories listed on Modify page.
gmoney 12077 Jun 30, 2010, 7:25 AM
Post; hot thread Re: [gmoney] Categories listed on Modify page.
Andy 12099 Jun 30, 2010, 7:20 AM
Post; hot thread Re: [Payooo] Categories listed on Modify page.
gmoney 12123 Jun 30, 2010, 4:20 AM