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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
<?php
/*
* Gallery - a web based photo album viewer and editor
* Copyright (C) 2000-2008 Bharat Mediratta
*
* This file Copyright (C) 2003-2004 Joan McGalliard
*
* 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*
* $Id: extra_fields.php 17808 2008-08-06 16:42:42Z JensT $
*/
?>
<?php
require_once(dirname(__FILE__) . '/init.php');
list($apply, $extra_fields, $num_user_fields, $setNested) =
getRequestVar(array('apply', 'extra_fields', 'num_user_fields', 'setNested'));
// Hack check
if (!$gallery->user->canWriteToAlbum($gallery->album)) {
echo gTranslate('core', "You are not allowed to perform this action!");
exit;
}
if (isset($apply)) {
$count=0;
if (!isset($extra_fields)) {
$extra_fields = array();
}
for ($i = 0; $i < sizeof($extra_fields); $i++) {
$extra_fields[$i] = str_replace('"', '"', $extra_fields[$i]);
}
$num_fields=$num_user_fields+num_special_fields($extra_fields);
$gallery->album->setExtraFields($extra_fields);
if ($num_fields > 0 && !$gallery->album->getExtraFields()) {
$gallery->album->setExtraFields(array());
}
if (sizeof ($gallery->album->getExtraFields()) < $num_fields) {
$gallery->album->setExtraFields(array_pad($gallery->album->getExtraFields(), $num_fields, gTranslate('core', "untitled field")));
}
if (sizeof ($gallery->album->getExtraFields()) > $num_fields) {
$gallery->album->setExtraFields(array_slice($gallery->album->getExtraFields(), 0, $num_fields));
}
if (!empty($setNested)) {
$gallery->album->setNestedExtraFields();
}
$gallery->album->save(array(i18n("Custom fields modified")));
reload();
}
doctype();
?>
<html>
<head>
<title><?php echo gTranslate('core', "Configure custom fields") ?></title>
<?php common_header(); ?>
</head>
<body dir="<?php echo $gallery->direction ?>" class="popupbody">
<div class="popuphead"><?php echo gTranslate('core', "Configure custom fields") ?></div>
<div class="popup" align="center">
<p>
<?php echo makeFormIntro("extra_fields.php",
array("name" => "theform"),
array("type" => "popup"));
$num_user_fields=sizeof($gallery->album->getExtraFields()) - num_special_fields($gallery->album->getExtraFields());
?>
<table>
<?php
$extra_fields = $gallery->album->getExtraFields();
// Translate the first "Title" in the line below only
?>
<tr>
<td><?php echo gTranslate('core', "Title") ?></td>
<td align="right">
<input type="checkbox" name="extra_fields[]" value="Title" <?php print in_array("Title", $extra_fields) ? "checked" : ""; ?>>
</td>
</tr>
<?php
foreach (automaticFieldsList() as $automatic => $printable_automatic) {
if ($automatic === "EXIF" && (($gallery->album->fields["use_exif"] !== "yes") || !$gallery->app->use_exif)) {
continue;
}
?>
<tr>
<td><?php print $printable_automatic ?></td>
<td align="right">
<input type="checkbox" name="extra_fields[]" value="<?php print $automatic ?>" <?php print in_array($automatic, $extra_fields) ? "checked" : ""; ?>>
</td>
</tr>
<?php
}
?>
<tr>
<td><?php gTranslate('core', "Alt text / Tooltip"); ?></td>
<td align="right">
<input type="checkbox" name="extra_fields[]" value="AltText" <?php print in_array("AltText", $extra_fields) ? "checked" : ""; ?>>
</td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td colspan="2">
<?php echo gTranslate('core', "Number of user defined custom fields") ?>
<input type="text" size="4" name="num_user_fields" value="<?php echo $num_user_fields ?>">
</td>
</tr>
<tr>
<td colspan="2"> </td></tr>
<?php
$i = 0;
foreach ($extra_fields as $value) {
if (in_array($value, array_keys(automaticFieldsList())))
continue;
if (!strcmp($value, "Title") || !strcmp($value, "AltText")) {
continue;
}
print "\n<tr>";
print "\n\t<td>". gTranslate('core', "Field").($i+1).": </td>";
print "\n\t<td align=\"right\"><input type=\"text\" name=\"extra_fields[]\" value=\"".$value."\"></td>";
print "\n</tr>";
$i++;
}
function num_special_fields($extra_fields) {
$num_special_fields = 0;
foreach (array_keys(automaticFieldsList()) as $special_field) {
if (in_array($special_field, $extra_fields))
$num_special_fields++;
}
foreach (array("Title", "AltText") as $named_field) {
if (in_array($named_field, $extra_fields)) {
$num_special_fields++;
}
}
return $num_special_fields;
}
?>
</table>
<p>
<input type="checkbox" name="setNested" value="1"><?php echo gTranslate('core', "Apply values to nested albums.") ?>.
</p>
<p>
<input type="submit" name="apply" value="<?php echo gTranslate('core', "Apply") ?>">
<input type="reset" value="<?php echo gTranslate('core', "Undo") ?>">
<input type="button" name="close" value="<?php echo gTranslate('core', "Close") ?>" onclick='parent.close()'>
</p>
</form>
</div>
<?php print gallery_validation_link("extra_fields.php"); ?>
</body>
</html>
|