aboutsummaryrefslogtreecommitdiffstats
path: root/admin/include/functions_waiting.inc.php
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2007-03-16 18:49:19 +0000
committerrub <rub@piwigo.org>2007-03-16 18:49:19 +0000
commit1a3660405a6856bca55932900e18edd5b5e6d20b (patch)
tree6759a9129ed371803b7a9bfe8fb65671fe4c7e92 /admin/include/functions_waiting.inc.php
parent837138918295869327ea93d06d508d7c26c2ebea (diff)
Add the last (before 1.8) tabsheet on administration menu (Waiting elements).
Small change way mail function. git-svn-id: http://piwigo.org/svn/trunk@1915 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r--admin/include/functions_waiting.inc.php54
1 files changed, 54 insertions, 0 deletions
diff --git a/admin/include/functions_waiting.inc.php b/admin/include/functions_waiting.inc.php
new file mode 100644
index 000000000..640991c00
--- /dev/null
+++ b/admin/include/functions_waiting.inc.php
@@ -0,0 +1,54 @@
+<?php
+// +-----------------------------------------------------------------------+
+// | PhpWebGallery - a PHP based picture gallery |
+// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
+// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
+// +-----------------------------------------------------------------------+
+// | 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. |
+// +-----------------------------------------------------------------------+
+
+include_once(PHPWG_ROOT_PATH.'admin/include/functions_tabsheet.inc.php');
+
+function waiting_tabsheet()
+{
+ global $page, $link_start;
+
+ // TabSheet initialization
+ $page['tabsheet'] = array
+ (
+ 'comments' => array
+ (
+ 'caption' => l10n('comments'),
+ 'url' => $link_start.'comments'
+ ),
+ 'upload' => array
+ (
+ 'caption' => l10n('upload_pictures'),
+ 'url' => $link_start.'upload'
+ )
+ );
+
+ $page['tabsheet'][$page['page']]['selected'] = true;
+
+ // Assign tabsheet to template
+ template_assign_tabsheet();
+}
+
+?>