root/trunk/includes/menus.inc.php

Revision 1, 2.7 KB (checked in by anonymous, 7 years ago)

initial import

Line 
1<?php
2/****************************************************** Open .node ***
3 * Description:   
4 * Status:        Stable.
5 * Author:        Alexandre Dath <alexandre@dotnode.com>
6 * $Id$
7 *
8 * Copyright (C) 2005 Alexandre Dath <alexandre@dotnode.com>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 ******************** http://opensource.ikse.net/projects/dotnode ***/
24
25$menu['pub'] = array(
26  'pub'        => 'Public Section');
27
28$smenu['pub'] = array(
29  'join'        => 'Join',
30  'help'        => 'Help' );
31
32$menu['error'] = array(
33  'pub'        => 'Home',
34  'pub/help'   => 'Help' );
35
36
37$menu['main'] = array(
38  'my'          => 'Home',
39  'friends'     => 'Friends',
40  'communities' => 'Communities',
41  'search'      => 'Search',
42  'news'        => 'News',
43  'help'        => 'Help',
44  'support'    => 'Support',
45  'logout'      => 'Logout' );
46
47$smenu['my'] = array(
48  'profile' => 'Edit my profile',
49  'album' => 'Manage my album',
50  'bookmarks' => 'Add bookmarks',
51  'blog' => 'Write blog',
52  'settings' => 'Settings',
53  'password' => 'Change my password' );
54
55$ssmenu['my']['profile'] = array(
56  'general' => 'General',
57  'interests' => 'Interests',
58  'professional' => 'Professional',
59  'personal' => 'Personal',
60  'schools' => 'Schools',
61  'contact' => 'Contact',
62  'photo' => 'Photo');
63
64$ssmenu['my']['blog'] = array(
65  'add' => 'Write a ticket',
66  'categorie' => 'Manage categories' );
67
68$smenu['friends'] = array(
69  'join' => 'Invitation',
70  'karma' => 'Karma',
71  'search' => 'Search');
72
73$smenu['messages'] = array(
74  'inbox' => 'Inbox',
75  'saved' => 'Saved',
76  'sent' => 'Sent',
77  'write' => 'Write');
78
79$smenu['communities'] = array(
80  'mine' => 'My communities',
81  'category' => 'Directory',
82  'search' => 'Search',
83  'last'   => 'New communities',
84  'create' => 'Create your community');
85
86$smenu['news'] = array(
87  'blog' => 'Last blog\'s tickets',
88  'statistics' => 'Statistics' );
89
90$ssmenu['news']['blog'] = array(
91  'friends' => 'View friends\' blogs only');
92
93$smenu['help'] = array(
94  'about' => 'About',
95  'faq' => 'FAQ',
96  'terms' => 'Terms',
97  'privacy' => 'Privacy');
98
99
100
101?>
Note: See TracBrowser for help on using the browser.