1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
<?php
/*
* Gallery - a web based photo album viewer and editor
* Copyright (C) 2000-2005 Bharat Mediratta
*
* 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; either version 2 of the License, or (at
* your option) any later version.
*
* 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.
*
* $Id: admin-page.php,v 1.5.2.6 2005/04/04 15:26:03 cryptographite Exp $
*
*/
?>
<?php
if (!isset($gallery->version)) {
require_once(dirname(__FILE__) . '/init.php');
}
// Security check
if (!$gallery->user->isAdmin()) {
header("Location: " . makeAlbumHeaderUrl());
exit;
}
$adminOptions[] = array( 'text' => _("statistics"),
'url' => makeGalleryUrl('stats-wizard.php'),
'longtext' => _("View some statistics about your Gallery. Such as most viewed pictures, or best rated photos etc."));
$adminOptions[] = array( 'text' => _("configuration wizard"),
'url' => $gallery->app->photoAlbumURL . '/setup/index.php',
'longtext' => _("Use the config wizard to reconfigure or tweak your Gallery"));
$adminOptions[] = array( 'text' => _("find orphans"),
'url' => makeGalleryUrl('tools/find_orphans.php'),
'longtext' => _("Find, remove or re-attach orphaned elements."));
$adminOptions[] = array( 'text' => _("find comment spam"),
'url' => makeGalleryUrl('tools/despam-comments.php'),
'longtext' => _("Find and remove comments that contains spam."));
$adminOptions[] = array( 'text' => _("validate albums"),
'url' => makeGalleryUrl('tools/validate_albums.php'),
'longtext' => _("Identify invalid albums, missing files, and other errors that may prevent you from migrating to Gallery 2"));
#$adminOptions[] = array( 'text' => _("Gallery backup"),
# 'url' => makeGalleryUrl('backup_albums.php'),
# 'longtext' => _("Make a backup of your Gallery."));
if (!$GALLERY_EMBEDDED_INSIDE) {
$adminOptions[] = array('text' => _("manage users"),
'popupFile' => 'manage_users.php',
'longtext' => _("Manage your users."));
}
function cmp ($a, $b) {
return strcmp($a["text"], $b["text"]);
}
usort($adminOptions, "cmp");
if (!$GALLERY_EMBEDDED_INSIDE) {
doctype();
?>
<html>
<head>
<title><?php echo $gallery->app->galleryTitle ?></title>
<?php
common_header() ;
?>
</head>
<body dir="<?php echo $gallery->direction ?>">
<?php
}
includeHtmlWrap("gallery.header");
$borderColor = $gallery->app->default["bordercolor"];
$navigator["fullWidth"] = 100;
$navigator["widthUnits"] = "%";
$adminbox["text"] ='<span class="head">'. _("Admin options") .'</span>';
$adminbox["commands"] = '[<a href="'. makeAlbumUrl() .'">'. _("return to gallery") .'</a>]';
includeLayout('navtablebegin.inc');
includeLayout('adminbox.inc');
includeLayout('navtablemiddle.inc');
includeLayout('breadcrumb.inc');
includeLayout('navtableend.inc');
includeLayout('ml_pulldown.inc');
if(!empty($adminOptions)) {
echo "\n" .'<table style="width:80%; margin:10px; margin-bottom:50px">';
foreach ($adminOptions as $option) {
echo "\n<tr>";
if (isset($option['url'])) {
$link = '<a class="admin" href="'. $option['url'] .'">'. $option['text'] .'</a>';
} else {
$link = popup_link($option['text'], $option['popupFile'], false, true, 500, 500, 'admin');
}
echo "\n<td class=\"adm_options\">$link</td>";
echo "\n<td class=\"adm_options\">". $option['longtext'] ."</td>";
echo "\n</tr>";
}
echo "\n</table>";
}
$validation_file = basename(__FILE__);
includeHtmlWrap("general.footer");
if (!$GALLERY_EMBEDDED_INSIDE) { ?>
</body>
</html>
<?php } ?>
|