Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: number of total categories

Quote Reply
Re: number of total categories In reply to
Hi,

just make a new template global (Admin -> Build -> Template Globals) and call it "TotalCats":
Code:
sub {
# show total number of categories
my $cat_db = $DB->table ('Category');
my $count = $cat_db->total;
return $count;
}
With that you can use the tag <%TotalCats%> in your templates (i.e. category.html or footer.txt).


Andreas
http://www.archaeologie-online.de
Subject Author Views Date
Thread number of total categories ChrisFr 2915 Jun 27, 2001, 3:33 PM
Thread Re: number of total categories
Digger 2828 Jun 28, 2001, 1:11 AM
Thread Re: number of total categories
ChrisFr 2812 Jun 28, 2001, 2:54 AM
Thread Re: number of total categories
Digger 2811 Jun 28, 2001, 3:10 AM
Thread Re: number of total categories
ChrisFr 2811 Jun 28, 2001, 3:25 AM
Thread Re: number of total categories
ChrisFr 2802 Jun 28, 2001, 5:12 AM
Thread Re: number of total categories
Stealth 2798 Jun 28, 2001, 7:50 AM
Post Re: number of total categories
ChrisFr 2799 Jun 28, 2001, 9:47 AM