Gossamer Forum
Home : Products : Gossamer Links : Discussions :

detailed user info.

Quote Reply
detailed user info.
Hello I have a global that generate detaile duser info, namely:

sub user_info {
# -------------------------------------------------------------------
# You call this tag by placing <%Links::Options::user_info%> in your templates
#
#
my $tags = shift;
my $user_db = $DB->table('Users');
my $user = $tags->{Username};
my $user_info = $user_db->get($user, 'HASH');
return $user_info;
}

Now how can I set this, to make their links and their (editor) categories visible in (this) global????