mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
It's a draft of the feature witch allows to show only recent elements. Development are not finished. Queries and special pages (best rates, tags, etc.) are not modified. Only main php files about images and categories are ok. Before to continue, I prefer to determinate a solution between modify cache implementation or hide counters. Go to http://forum.phpwebgallery.net/viewtopic.php?pid=50015#p50015 git-svn-id: http://piwigo.org/svn/trunk@1648 68402e56-0260-453c-a942-63ccdbb3a9ee
311 lines
8.4 KiB
PHP
Executable File
311 lines
8.4 KiB
PHP
Executable File
<?php
|
|
// +-----------------------------------------------------------------------+
|
|
// | PhpWebGallery - a PHP based picture gallery |
|
|
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
|
|
// | Copyright (C) 2003-2006 PhpWebGallery Team - http://phpwebgallery.net |
|
|
// +-----------------------------------------------------------------------+
|
|
// | branch : BSF (Best So Far)
|
|
// | file : $Id$
|
|
// | last update : $Date$
|
|
// | last modifier : $Author$
|
|
// | revision : $Revision$
|
|
// +-----------------------------------------------------------------------+
|
|
// | 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 |
|
|
// | |
|
|
// | 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, |
|
|
// | USA. |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
/**
|
|
* This file is included by the main page to show the menu bar
|
|
*
|
|
*/
|
|
$template->set_filenames(
|
|
array(
|
|
'menubar' => 'menubar.tpl',
|
|
)
|
|
);
|
|
|
|
trigger_action('loc_begin_menubar');
|
|
|
|
$template->assign_vars(
|
|
array(
|
|
'NB_PICTURE' => $user['nb_total_images'],
|
|
'USERNAME' => $user['username'],
|
|
'MENU_CATEGORIES_CONTENT' => get_categories_menu(),
|
|
'F_IDENTIFY' => get_root_url().'identification.php',
|
|
'U_HOME' => make_index_url(),
|
|
'U_REGISTER' => get_root_url().'register.php',
|
|
'U_LOST_PASSWORD' => get_root_url().'password.php',
|
|
'U_LOGOUT' => get_root_url().'?act=logout',
|
|
'U_ADMIN'=> get_root_url().'admin.php',
|
|
'U_PROFILE'=> get_root_url().'profile.php',
|
|
)
|
|
);
|
|
|
|
//-------------------------------------------------------------- external links
|
|
foreach ($conf['links'] as $url => $label)
|
|
{
|
|
$template->assign_block_vars(
|
|
'links.link',
|
|
array(
|
|
'URL' => $url,
|
|
'LABEL' => $label
|
|
)
|
|
);
|
|
}
|
|
//------------------------------------------------------------------------ tags
|
|
if ('tags' == $page['section'])
|
|
{
|
|
// display tags associated to currently tagged items, less current tags
|
|
$tags = array();
|
|
if ( !empty($page['items']) )
|
|
{
|
|
$tags = get_common_tags($page['items'],
|
|
$conf['menubar_tag_cloud_items_number'], $page['tag_ids']);
|
|
}
|
|
|
|
$tags = add_level_to_tags($tags);
|
|
|
|
foreach ($tags as $tag)
|
|
{
|
|
$template->assign_block_vars(
|
|
'tags.tag',
|
|
array(
|
|
'URL' => make_index_url(
|
|
array(
|
|
'tags' => array(
|
|
array(
|
|
'id' => $tag['tag_id'],
|
|
'url_name' => $tag['url_name'],
|
|
),
|
|
)
|
|
)
|
|
),
|
|
|
|
'NAME' => $tag['name'],
|
|
|
|
'TITLE' => l10n('See pictures linked to this tag only'),
|
|
|
|
'CLASS' => 'tagLevel'.$tag['level']
|
|
)
|
|
);
|
|
|
|
$template->assign_block_vars(
|
|
'tags.tag.add',
|
|
array(
|
|
'URL' => make_index_url(
|
|
array(
|
|
'tags' => array_merge(
|
|
$page['tags'],
|
|
array(
|
|
array(
|
|
'id' => $tag['tag_id'],
|
|
'url_name' => $tag['url_name'],
|
|
),
|
|
)
|
|
)
|
|
)
|
|
),
|
|
'TITLE' => sprintf(
|
|
l10n('%d pictures are also linked to current tags'),
|
|
$tag['counter']
|
|
),
|
|
)
|
|
);
|
|
|
|
}
|
|
}
|
|
//---------------------------------------------------------- special categories
|
|
// favorites categories
|
|
if ( !$user['is_the_guest'] )
|
|
{
|
|
$template->assign_block_vars('username', array());
|
|
|
|
$template->assign_block_vars(
|
|
'special_cat',
|
|
array(
|
|
'URL' => make_index_url(array('section' => 'favorites')),
|
|
'TITLE' => $lang['favorite_cat_hint'],
|
|
'NAME' => $lang['favorite_cat']
|
|
));
|
|
}
|
|
// most visited
|
|
$template->assign_block_vars(
|
|
'special_cat',
|
|
array(
|
|
'URL' => make_index_url(array('section' => 'most_visited')),
|
|
'TITLE' => $lang['most_visited_cat_hint'],
|
|
'NAME' => $lang['most_visited_cat']
|
|
));
|
|
// best rated
|
|
if ($conf['rate'])
|
|
{
|
|
$template->assign_block_vars(
|
|
'special_cat',
|
|
array(
|
|
'URL' => make_index_url(array('section' => 'best_rated')),
|
|
'TITLE' => $lang['best_rated_cat_hint'],
|
|
'NAME' => $lang['best_rated_cat']
|
|
)
|
|
);
|
|
}
|
|
// random
|
|
$template->assign_block_vars(
|
|
'special_cat',
|
|
array(
|
|
'URL' => get_root_url().'random.php',
|
|
'TITLE' => $lang['random_cat_hint'],
|
|
'NAME' => $lang['random_cat']
|
|
));
|
|
|
|
// Not recent menu when filter is activated
|
|
if (!$page['filter_mode'])
|
|
{
|
|
// recent pics
|
|
$template->assign_block_vars(
|
|
'special_cat',
|
|
array(
|
|
'URL' => make_index_url(array('section' => 'recent_pics')),
|
|
'TITLE' => $lang['recent_pics_cat_hint'],
|
|
'NAME' => $lang['recent_pics_cat']
|
|
));
|
|
// recent cats
|
|
$template->assign_block_vars(
|
|
'special_cat',
|
|
array(
|
|
'URL' => make_index_url(array('section' => 'recent_cats')),
|
|
'TITLE' => $lang['recent_cats_cat_hint'],
|
|
'NAME' => $lang['recent_cats_cat']
|
|
));
|
|
}
|
|
|
|
// calendar
|
|
$template->assign_block_vars(
|
|
'special_cat',
|
|
array(
|
|
'URL' =>
|
|
make_index_url(
|
|
array(
|
|
'chronology_field' => ($conf['calendar_datefield']=='date_available'
|
|
? 'posted' : 'created'),
|
|
'chronology_style'=> 'monthly',
|
|
'chronology_view' => 'calendar'
|
|
)
|
|
),
|
|
'TITLE' => $lang['calendar_hint'],
|
|
'NAME' => $lang['calendar']
|
|
)
|
|
);
|
|
//--------------------------------------------------------------------- summary
|
|
|
|
if ($user['is_the_guest'])
|
|
{
|
|
$template->assign_block_vars('register', array());
|
|
$template->assign_block_vars('login', array());
|
|
|
|
$template->assign_block_vars('quickconnect', array());
|
|
if ($conf['authorize_remembering'])
|
|
{
|
|
$template->assign_block_vars('quickconnect.remember_me', array());
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$template->assign_block_vars('hello', array());
|
|
|
|
if (is_autorize_status(ACCESS_CLASSIC))
|
|
{
|
|
$template->assign_block_vars('profile', array());
|
|
}
|
|
|
|
// the logout link has no meaning with Apache authentication : it is not
|
|
// possible to logout with this kind of authentication.
|
|
if (!$conf['apache_authentication'])
|
|
{
|
|
$template->assign_block_vars('logout', array());
|
|
}
|
|
|
|
if (is_admin())
|
|
{
|
|
$template->assign_block_vars('admin', array());
|
|
}
|
|
}
|
|
|
|
// tags link
|
|
$template->assign_block_vars(
|
|
'summary',
|
|
array(
|
|
'TITLE' => l10n('See available tags'),
|
|
'NAME' => l10n('Tags'),
|
|
'U_SUMMARY'=> get_root_url().'tags.php',
|
|
)
|
|
);
|
|
|
|
// search link
|
|
$template->assign_block_vars(
|
|
'summary',
|
|
array(
|
|
'TITLE'=>$lang['hint_search'],
|
|
'NAME'=>$lang['search'],
|
|
'U_SUMMARY'=> get_root_url().'search.php',
|
|
'REL'=> 'rel="search"'
|
|
)
|
|
);
|
|
$template->assign_block_vars( 'summary.quick_search', array() );
|
|
|
|
// comments link
|
|
$template->assign_block_vars(
|
|
'summary',
|
|
array(
|
|
'TITLE'=>$lang['hint_comments'],
|
|
'NAME'=>$lang['comments'],
|
|
'U_SUMMARY'=> get_root_url().'comments.php',
|
|
)
|
|
);
|
|
|
|
// about link
|
|
$template->assign_block_vars(
|
|
'summary',
|
|
array(
|
|
'TITLE' => $lang['about_page_title'],
|
|
'NAME' => $lang['About'],
|
|
'U_SUMMARY' => get_root_url().'about.php',
|
|
)
|
|
);
|
|
|
|
// notification
|
|
$template->assign_block_vars(
|
|
'summary',
|
|
array(
|
|
'TITLE'=>l10n('RSS feed'),
|
|
'NAME'=>l10n('Notification'),
|
|
'U_SUMMARY'=> get_root_url().'notification.php',
|
|
'REL'=> 'rel="nofollow"'
|
|
)
|
|
);
|
|
|
|
if (isset($page['category']) and $page['cat_uploadable'] )
|
|
{ // upload a picture in the category
|
|
$url = get_root_url().'upload.php?cat='.$page['category'];
|
|
$template->assign_block_vars(
|
|
'upload',
|
|
array(
|
|
'U_UPLOAD'=> $url
|
|
)
|
|
);
|
|
}
|
|
|
|
trigger_action('loc_end_menubar');
|
|
$template->assign_var_from_handle('MENUBAR', 'menubar');
|
|
?>
|