-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenubox.php
executable file
·40 lines (38 loc) · 1.62 KB
/
menubox.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
//
// $Id: menubox.php 6230 2001-07-20 11:28:54Z jakobn $
//
// Created on: <05-Jan-2001 11:18:10 bf>
//
// This source file is part of eZ publish, publishing software.
//
// Copyright (C) 1999-2001 eZ Systems. All rights reserved.
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, US
//
// Supply $menuItems to get a menubox
$menuItems = array(
array( "/stats/overview/", "{intl-overview}" ),
array( "/stats/entryexitreport/", "{intl-entry_exit_report}" ),
array( "/stats/pageviewlist/last/20", "{intl-last_page_views}" ),
array( "/stats/visitorlist/top/20", "{intl-top_visitors}" ),
array( "/stats/refererlist/top/20/", "{intl-referer_list}" ),
array( "/stats/browserlist/top/25/", "{intl-browser_list}" ),
array( "/stats/requestpagelist/top/20/", "{intl-request_page_list}" ),
array( "/stats/yearreport/", "{intl-year_report}" ),
array( "/stats/monthreport/", "{intl-month_report}" ),
array( "/stats/dayreport/", "{intl-day_report}" )
);
?>