source: trunk/include/menubar.inc.php @ 5752

Last change on this file since 5752 was 5752, checked in by rvelices, 14 years ago

feqture 1583 : show related tags block also when browsing non tag sections

File size: 9.8 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2010 Piwigo Team                  http://piwigo.org |
6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
23
24/**
25 * This file is included by the main page to show the menu bar
26 *
27 */
28
29include_once(PHPWG_ROOT_PATH.'include/block.class.php');
30
31initialize_menu();
32
33function initialize_menu()
34{
35  global $page, $conf, $user, $template, $filter;
36
37  $menu = new BlockManager("menubar");
38  $menu->load_registered_blocks();
39  $menu->prepare_display();
40
41//--------------------------------------------------------------- external links
42  if ( ($block=$menu->get_block('mbLinks')) and !empty($conf['links']) )
43  {
44    $data = array();
45    foreach ($conf['links'] as $url => $url_data)
46    {
47      if (!is_array($url_data))
48      {
49        $url_data = array('label' => $url_data);
50      }
51
52      if
53        (
54          (!isset($url_data['eval_visible']))
55          or
56          (eval($url_data['eval_visible']))
57        )
58      {
59        $tpl_var = array(
60            'URL' => $url,
61            'LABEL' => $url_data['label']
62          );
63
64        if (!isset($url_data['new_window']) or $url_data['new_window'])
65        {
66          $tpl_var['new_window'] =
67            array(
68              'NAME' => (isset($url_data['nw_name']) ? $url_data['nw_name'] : ''),
69              'FEATURES' => (isset($url_data['nw_features']) ? $url_data['nw_features'] : '')
70            );
71        }
72        $data[] = $tpl_var;
73      }
74    }
75    $block->template = 'menubar_links.tpl';
76    $block->data = $data;
77  }
78
79//-------------------------------------------------------------- categories
80  $block = $menu->get_block('mbCategories');
81//------------------------------------------------------------------------ filter
82  if ($conf['menubar_filter_icon'] and !empty($conf['filter_pages']) and get_filter_page_value('used'))
83  {
84    if ($filter['enabled'])
85    {
86      $template->assign(
87        'U_STOP_FILTER',
88        add_url_params(make_index_url(array()), array('filter' => 'stop'))
89        );
90    }
91    else
92    {
93      $template->assign(
94        'U_START_FILTER',
95        add_url_params(make_index_url(array()), array('filter' => 'start-recent-'.$user['recent_period']))
96        );
97    }
98  }
99
100  if ( $block!=null )
101  {
102    $block->data = array(
103      'NB_PICTURE' => $user['nb_total_images'],
104      'MENU_CATEGORIES' => get_categories_menu(),
105      'U_CATEGORIES' => make_index_url(array('section' => 'categories')),
106      'U_UPLOAD' => get_upload_menu_link()
107    );
108    $block->template = 'menubar_categories.tpl';
109  }
110
111//------------------------------------------------------------------------ tags
112  $block = $menu->get_block('mbTags');
113  if ( $block!=null and !empty($page['items']) )
114  {
115    if ('tags'==@$page['section'])
116    {
117      $tags = get_common_tags(
118        $page['items'],
119        $conf['menubar_tag_cloud_items_number'],
120        $page['tag_ids']
121        );
122      $tags = add_level_to_tags($tags);
123
124      foreach ($tags as $tag)
125      {
126        $block->data[] = array_merge(
127          $tag,
128          array(
129            'U_ADD' => make_index_url(
130              array(
131                'tags' => array_merge(
132                  $page['tags'],
133                  array($tag)
134                  )
135                )
136              ),
137            'URL' => make_index_url( array( 'tags' => array($tag) )
138              ),
139            )
140          );
141      }
142    }
143    else
144    {
145      $selection = array_slice( $page['items'], $page['start'], $page['nb_image_page'] );
146      $tags = add_level_to_tags( get_common_tags($selection, 12) );
147      foreach ($tags as $tag)
148      {
149        $block->data[] =
150        array_merge( $tag,
151          array(
152            'URL' => make_index_url( array( 'tags' => array($tag) ) ),
153          )
154        );
155      }
156    }
157    if ( !empty($block->data) )
158    {
159      $block->template = 'menubar_tags.tpl';
160    }
161  }
162
163//----------------------------------------------------------- special categories
164  if ( ($block = $menu->get_block('mbSpecials')) != null )
165  {
166    if ( !is_a_guest() )
167    {// favorites
168      $block->data['favorites'] =
169        array(
170          'URL' => make_index_url(array('section' => 'favorites')),
171          'TITLE' => l10n('display my favorites pictures'),
172          'NAME' => l10n('My favorites')
173          );
174    }
175
176    $block->data['most_visited'] =
177      array(
178        'URL' => make_index_url(array('section' => 'most_visited')),
179        'TITLE' => l10n('display most visited pictures'),
180        'NAME' => l10n('Most visited')
181      );
182
183    if ($conf['rate'])
184    {
185       $block->data['best_rated'] =
186        array(
187          'URL' => make_index_url(array('section' => 'best_rated')),
188          'TITLE' => l10n('display best rated items'),
189          'NAME' => l10n('Best rated')
190        );
191    }
192
193    $block->data['random'] =
194      array(
195        'URL' => get_root_url().'random.php',
196        'TITLE' => l10n('display a set of random pictures'),
197        'NAME' => l10n('Random pictures'),
198        'REL'=> 'rel="nofollow"'
199      );
200
201    $block->data['recent_pics'] =
202      array(
203        'URL' => make_index_url(array('section' => 'recent_pics')),
204        'TITLE' => l10n('display most recent pictures'),
205        'NAME' => l10n('Recent pictures'),
206      );
207
208    $block->data['recent_cats'] =
209      array(
210        'URL' => make_index_url(array('section' => 'recent_cats')),
211        'TITLE' => l10n('display recently updated categories'),
212        'NAME' => l10n('Recent categories'),
213      );
214
215
216    $block->data['calendar'] =
217      array(
218        'URL' =>
219          make_index_url(
220            array(
221              'chronology_field' => ($conf['calendar_datefield']=='date_available'
222                                      ? 'posted' : 'created'),
223               'chronology_style'=> 'monthly',
224               'chronology_view' => 'calendar'
225            )
226          ),
227        'TITLE' => l10n('display each day with pictures, month per month'),
228        'NAME' => l10n('Calendar'),
229        'REL'=> 'rel="nofollow"'
230      );
231    $block->template = 'menubar_specials.tpl';
232  }
233
234
235//---------------------------------------------------------------------- summary
236  if ( ($block=$menu->get_block('mbMenu')) != null )
237  {
238    // quick search block will be displayed only if data['qsearch'] is set
239    // to "yes"
240    $block->data['qsearch']=true;
241
242    // tags link
243    $block->data['tags'] =
244      array(
245        'TITLE' => l10n('See available tags'),
246        'NAME' => l10n('Tags'),
247        'URL'=> get_root_url().'tags.php',
248      );
249
250    // search link
251    $block->data['search'] =
252      array(
253        'TITLE'=>l10n('search'),
254        'NAME'=>l10n('Search'),
255        'URL'=> get_root_url().'search.php',
256        'REL'=> 'rel="search"'
257      );
258
259    // comments link
260    $block->data['comments'] =
261      array(
262        'TITLE'=>l10n('See last users comments'),
263        'NAME'=>l10n('Comments'),
264        'URL'=> get_root_url().'comments.php',
265      );
266
267    // about link
268    $block->data['about'] =
269      array(
270        'TITLE'     => l10n('About Piwigo'),
271        'NAME'      => l10n('About'),
272        'URL' => get_root_url().'about.php',
273      );
274
275    // notification
276    $block->data['rss'] =
277      array(
278        'TITLE'=>l10n('RSS feed'),
279        'NAME'=>l10n('Notification'),
280        'URL'=> get_root_url().'notification.php',
281        'REL'=> 'rel="nofollow"'
282      );
283    $block->template = 'menubar_menu.tpl';
284  }
285
286
287//--------------------------------------------------------------- identification
288  if (is_a_guest())
289  {
290    $template->assign(
291        array(
292          'U_LOGIN' => get_root_url().'identification.php',
293          'U_LOST_PASSWORD' => get_root_url().'password.php',
294          'AUTHORIZE_REMEMBERING' => $conf['authorize_remembering']
295        )
296      );
297    if ($conf['allow_user_registration'])
298    {
299      $template->assign( 'U_REGISTER', get_root_url().'register.php');
300    }
301  }
302  else
303  {
304    $template->assign('USERNAME', stripslashes($user['username']));
305    if (is_autorize_status(ACCESS_CLASSIC))
306    {
307      $template->assign('U_PROFILE', get_root_url().'profile.php');
308    }
309
310    // the logout link has no meaning with Apache authentication : it is not
311    // possible to logout with this kind of authentication.
312    if (!$conf['apache_authentication'])
313    {
314      $template->assign('U_LOGOUT', get_root_url().'?act=logout');
315    }
316    if (is_admin())
317    {
318      $template->assign('U_ADMIN', get_root_url().'admin.php');
319    }
320  }
321  if ( ($block=$menu->get_block('mbIdentification')) != null )
322  {
323    $block->template = 'menubar_identification.tpl';
324  }
325  $menu->apply('MENUBAR',  'menubar.tpl' );
326}
327?>
Note: See TracBrowser for help on using the repository browser.