/usr/share/zoph/www/php/album.php is in zoph 0.9.4-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <?php
/**
* Define and modify albums
* This file is part of Zoph.
*
* Zoph 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.
*
* Zoph 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 Zoph; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* @package Zoph
* @author Jason Geiger
* @author Jeroen Roos
*/
require_once "include.inc.php";
if (!$user->canEditOrganizers()) {
redirect("zoph.php");
}
$album_id = getvar("album_id");
$album = new album($album_id);
$obj = &$album;
$redirect = "albums.php";
if ($_action=="update" && getvar("sortorder")=="") {
// overiding the default action, to be able to clear the sortorder
$obj->setFields($request_vars);
$obj->set("sortorder", "");
$obj->update();
$action = "display";
} else {
require_once "actions.inc.php";
}
if ($action == "display") {
redirect("albums.php?parent_album_id=" . $album->get("album_id"), "Redirect");
}
if ($action != "insert") {
$album->lookup();
$title = $album->get("album");
} else {
$title = translate("New Album");
}
require_once "header.inc.php";
if ($action == "confirm") {
?>
<h1><?php echo translate("delete album") ?></h1>
<div class="main">
<?php echo sprintf(translate("Confirm deletion of '%s' and its subalbums:"),
$album->get("album")) ?>
<ul class="actionlink">
<li><a href="album.php?_action=confirm&album_id=<?php
echo $album->getId() ?>">
<?php echo translate("delete") ?>
</a></li>
<li><a href="album.php?_action=edit&album_id=<?php
echo $album->getId() ?>">
<?php echo translate("cancel") ?>
</a></li>
</ul>
</div>
<?php
} else {
?>
<h1>
<ul class="actionlink">
<li><a href="albums.php"><?php echo translate("return") ?></a></li>
<li><a href="album.php?_action=delete&album_id=<?php
echo $album->get("album_id") ?>">
<?php echo translate("delete") ?>
</a></li>
</ul>
<?php echo translate("album") ?>
</h1>
<div class="main">
<form action="album.php">
<input type="hidden" name="_action" value="<?php echo $action ?>">
<input type="hidden" name="album_id" value="<?php echo $album->get("album_id") ?>">
<?php echo create_edit_fields($album->getEditArray()) ?>
<input type="submit" value="<?php echo translate($action, 0) ?>">
</form>
</div>
<?php
}
?>
<?php
require_once "footer.inc.php";
?>
|