aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2010-04-29 13:58:40 +0000
committerplegall <plg@piwigo.org>2010-04-29 13:58:40 +0000
commit884c9375f3e35578ad67b9d58a41b97fef04949c (patch)
tree486ec4e04bad2d3bba8034a8a0ca48bc0168a0b5
parenta07188b3befe9325af3e8b73efe8b3598f8352e5 (diff)
bug 1613 fixed: split the "pending" screen into 2 distinct sections :
admin>photos>pending + admin>tools>pending comments. git-svn-id: http://piwigo.org/svn/trunk@5997 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--admin.php3
-rw-r--r--admin/comments.php4
-rw-r--r--admin/include/functions.php2
-rw-r--r--admin/include/functions_waiting.inc.php41
-rw-r--r--admin/themes/default/template/admin.tpl1
-rw-r--r--admin/upload.php4
-rw-r--r--language/en_UK/admin.lang.php1
-rw-r--r--language/fr_FR/admin.lang.php1
8 files changed, 6 insertions, 51 deletions
diff --git a/admin.php b/admin.php
index 21014e2e9..c80fa508c 100644
--- a/admin.php
+++ b/admin.php
@@ -118,7 +118,7 @@ $template->assign(
'U_MOVE'=> $link_start.'cat_move',
'U_CAT_OPTIONS'=> $link_start.'cat_options',
'U_CAT_UPDATE'=> $link_start.'site_update&amp;site=1',
- 'U_WAITING'=> $link_start.'comments',
+ 'U_WAITING'=> $link_start.'upload',
'U_RATING'=> $link_start.'rating',
'U_CADDIE'=> $link_start.'element_set&amp;cat=caddie',
'U_RECENT_SET'=> $link_start.'element_set&amp;cat=recent',
@@ -133,6 +133,7 @@ $template->assign(
'U_PLUGINS'=> $link_start.'plugins_list',
'U_ADD_PHOTOS' => $link_start.'photos_add',
'U_CHANGE_THEME' => PHPWG_ROOT_PATH.'admin.php?change_theme=1',
+ 'U_PENDING_COMMENTS' => $link_start.'comments',
)
);
diff --git a/admin/comments.php b/admin/comments.php
index 394825ec9..4bb4490ac 100644
--- a/admin/comments.php
+++ b/admin/comments.php
@@ -27,7 +27,6 @@ if (!defined('PHPWG_ROOT_PATH'))
}
include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
-include_once(PHPWG_ROOT_PATH.'admin/include/functions_waiting.inc.php');
// +-----------------------------------------------------------------------+
// | Check Access and exit when user status is not ok |
@@ -96,9 +95,6 @@ DELETE
$template->set_filenames(array('comments'=>'comments.tpl'));
-// TabSheet initialization
-waiting_tabsheet();
-
$template->assign(
array(
'F_ACTION' => get_root_url().'admin.php?page=comments'
diff --git a/admin/include/functions.php b/admin/include/functions.php
index 618c65b99..d0ea59822 100644
--- a/admin/include/functions.php
+++ b/admin/include/functions.php
@@ -1908,7 +1908,6 @@ function get_active_menu($menu_page)
{
case 'photos_add':
case 'upload':
- case 'comments': // really needs to be moved somewhere else
case 'rating':
case 'tags':
case 'picture_modify':
@@ -1941,6 +1940,7 @@ function get_active_menu($menu_page)
case 'history':
case 'maintenance':
case 'thumbnail':
+ case 'comments':
return 4;
case 'configuration':
diff --git a/admin/include/functions_waiting.inc.php b/admin/include/functions_waiting.inc.php
deleted file mode 100644
index ae27b97c2..000000000
--- a/admin/include/functions_waiting.inc.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php
-// +-----------------------------------------------------------------------+
-// | Piwigo - a PHP based picture gallery |
-// +-----------------------------------------------------------------------+
-// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
-// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
-// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
-// +-----------------------------------------------------------------------+
-// | 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. |
-// +-----------------------------------------------------------------------+
-
-include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php');
-
-function waiting_tabsheet()
-{
- global $page, $link_start;
-
- // TabSheet
- $tabsheet = new tabsheet();
- // TabSheet initialization
- $tabsheet->add('comments', l10n('Comments'), $link_start.'comments');
- $tabsheet->add('upload', l10n('Pictures'), $link_start.'upload');
- // TabSheet selection
- $tabsheet->select($page['page']);
- // Assign tabsheet to template
- $tabsheet->assign();
-}
-
-?>
diff --git a/admin/themes/default/template/admin.tpl b/admin/themes/default/template/admin.tpl
index 380248870..0a3c5be70 100644
--- a/admin/themes/default/template/admin.tpl
+++ b/admin/themes/default/template/admin.tpl
@@ -73,6 +73,7 @@ jQuery().ready(function(){ldelim}
<li><a href="{$U_HISTORY_STAT}">{'History'|@translate}</a></li>
<li><a href="{$U_THUMBNAILS}">{'Thumbnails'|@translate}</a></li>
<li><a href="{$U_MAINTENANCE}">{'Maintenance'|@translate}</a></li>
+ <li><a href="{$U_PENDING_COMMENTS}">{'Pending Comments'|@translate}</a></li>
</ul>
</dd>
</dl>
diff --git a/admin/upload.php b/admin/upload.php
index b7790d4ac..e97198b18 100644
--- a/admin/upload.php
+++ b/admin/upload.php
@@ -27,7 +27,6 @@ if( !defined("PHPWG_ROOT_PATH") )
}
include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
-include_once(PHPWG_ROOT_PATH.'admin/include/functions_waiting.inc.php');
// +-----------------------------------------------------------------------+
// | Check Access and exit when user status is not ok |
@@ -137,9 +136,6 @@ DELETE
//----------------------------------------------------- template initialization
$template->set_filenames(array('upload'=>'upload.tpl'));
-// TabSheet initialization
-waiting_tabsheet();
-
$template->assign(array(
'F_ACTION'=>str_replace( '&', '&amp;', $_SERVER['REQUEST_URI'])
));
diff --git a/language/en_UK/admin.lang.php b/language/en_UK/admin.lang.php
index 16c0556bb..472d6e28f 100644
--- a/language/en_UK/admin.lang.php
+++ b/language/en_UK/admin.lang.php
@@ -766,4 +766,5 @@ $lang['There is no other theme available.'] = 'There is no other theme available
$lang['Add another set of photos'] = 'Add another set of photos';
$lang['Order of menubar items has been updated successfully.'] = 'Order of menubar items has been updated successfully.';
$lang['This theme was not designed to be directly activated'] = 'This theme was not designed to be directly activated';
+$lang['Pending Comments'] = 'Pending Comments';
?>
diff --git a/language/fr_FR/admin.lang.php b/language/fr_FR/admin.lang.php
index 28b31c006..ded4f38ab 100644
--- a/language/fr_FR/admin.lang.php
+++ b/language/fr_FR/admin.lang.php
@@ -771,4 +771,5 @@ $lang['delete'] = 'effacer';
$lang['Add another set of photos'] = 'Ajouter d\'autres photos';
$lang['Order of menubar items has been updated successfully.'] = 'L\'ordre des éléments du menu a été mis à jour avec succès.';
$lang['This theme was not designed to be directly activated'] = 'Ce thème n\'est pas conçu pour être activé directement';
+$lang['Pending Comments'] = 'Commentaires en attente';
?>