diff options
Diffstat (limited to 'rt/share/html/Articles/Elements/ShowTopicLink')
-rw-r--r-- | rt/share/html/Articles/Elements/ShowTopicLink | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/rt/share/html/Articles/Elements/ShowTopicLink b/rt/share/html/Articles/Elements/ShowTopicLink new file mode 100644 index 000000000..7b6d550be --- /dev/null +++ b/rt/share/html/Articles/Elements/ShowTopicLink @@ -0,0 +1,27 @@ +<%args> +$Topic +$Class => 0 +</%args> +% if ($Link) { +<a href="Topics.html?id=<% $Topic->Id %>&class=<% $Class %>">\ +% } +<% $Topic->Name() || loc("(no name)") %>\ +% if ($Topic->Description) { +: <% $Topic->Description %> +% } + +% if ( $Articles->Count ) { + (<&|/l, $Articles->Count &>[quant,_1,article]</&>) +% } + +% if ($Link) { +</a> +% } + +<%init> +my $Articles = RT::ObjectTopics->new( $session{'CurrentUser'} ); +$Articles->Limit( FIELD => 'ObjectType', VALUE => 'RT::Article' ); +$Articles->Limit( FIELD => 'Topic', VALUE => $Topic->Id ); + +my $Link = $Topic->Children->Count || $Articles->Count; +</%init> |