summaryrefslogtreecommitdiff
path: root/rt/html/Reports/Activity/Elements/Tabs
diff options
context:
space:
mode:
Diffstat (limited to 'rt/html/Reports/Activity/Elements/Tabs')
-rw-r--r--rt/html/Reports/Activity/Elements/Tabs52
1 files changed, 0 insertions, 52 deletions
diff --git a/rt/html/Reports/Activity/Elements/Tabs b/rt/html/Reports/Activity/Elements/Tabs
deleted file mode 100644
index a9498209e..000000000
--- a/rt/html/Reports/Activity/Elements/Tabs
+++ /dev/null
@@ -1,52 +0,0 @@
-<& /Elements/Tabs,
- tabs => $tabs,
- subtabs => $subtabs,
- current_toptab => 'Tools/Offline.html',
- current_tab => 'Reports/Activity/index.html'.$args,
- Title => $Title &>
-
-<%INIT>
-my $subtabs = {};
-
-my $top = $m->caller_args(-1);
-my $args = "?" . $m->comp( '/Elements/QueryString',
- query => $top->{query},
- start => $top->{start},
- end => $top->{end});
-if ($m->caller_args(-1)->{'query'}) {
- $current_subtab .= $args;
- $subtabs = {
- a => { title => 'Activity detail',
- path => 'Reports/Activity/ActivityDetail.html'.$args,
- },
- b => { title => 'Activity summary',
- path => 'Reports/Activity/ActivitySummary.html'.$args,
- },
- c => { title => 'Resolution comments',
- path => 'Reports/Activity/ResolutionComments.html'.$args,
- },
- d => { title => 'Resolution statistics',
- path => 'Reports/Activity/ResolutionStatistics.html'.$args,
- },
- };
-}
-
-my $tabs = {
- a => { title => loc('Offline'),
- path => 'Tools/Offline.html',
- },
- r => { title => loc('Reports'),
- path => 'Reports/Activity/index.html'.$args,
- subtabs => $subtabs,
- current_subtab => $current_subtab,
- }
- };
-
-</%INIT>
-
-
-<%ARGS>
-$current_tab => undef
-$current_subtab => undef
-$Title => undef
-</%ARGS>