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 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
|
<?php
/* 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
*/
require_once("include.inc.php");
if ($_action == "edit") {
$action = "update";
}
else if ($_action == "update") {
if (DEFAULT_USER != $user->get("user_id")) {
$user->prefs->set_fields($request_vars);
$user->prefs->update();
$user->prefs->load(1);
$rtplang = $user->load_language(1);
}
$action = "update";
}
else {
$action = "update";
}
$title = translate("Preferences");
require_once("header.inc.php");
?>
<h1>
<span class="actionlink"><a href="password.php"><?php echo translate("change password") ?></a></span>
<?php echo translate("edit preferences") ?>
</h1>
<div class="main">
<form action="prefs.php" method="GET">
<table id="prefs">
<?php
if ($user->get("user_id") == DEFAULT_USER) {
?>
<tr>
<td colspan="2">
<?php echo sprintf(translate("The user %s is currently defined as the default user and does not have permission to change its preferences. The current values are shown below but any changes made will be ignored until a different default user is defined."), $user->get("user_name")); ?>
</td>
</tr>
<?php
}
?>
<tr>
<td class="fieldtitle">
<input type="hidden" name="_action" value="<?php echo $action ?>">
<input type="hidden" name="user_id" value="<?php echo $user->prefs->get("user_id") ?>">
<?php echo translate("user name") ?>
</td>
<td class="field">
<?php echo $user->get("user_name") ?>
</td>
</tr>
<tr>
<td class="fieldtitle"><?php echo translate("show breadcrumbs") ?></td>
<td class="field">
<?php echo create_pulldown("show_breadcrumbs", $user->prefs->get("show_breadcrumbs"), array("1" => translate("Yes",0), "0" => translate("No",0)) ) ?>
</td>
</tr>
<tr>
<td class="fieldtitle"><?php echo translate("number of breadcrumbs to show") ?></td>
<td class="field">
<?php echo create_integer_pulldown("num_breadcrumbs", $user->prefs->get("num_breadcrumbs"), 1, 20) ?>
</td>
</tr>
<tr>
<td class="fieldtitle"><?php echo translate("default number of rows on results page") ?></td>
<td class="field">
<?php echo create_integer_pulldown("num_rows", $user->prefs->get("num_rows"), 1, 10) ?>
</td>
</tr>
<tr>
<td class="fieldtitle"><?php echo translate("default number of columns on results page") ?></td>
<td class="field">
<?php echo create_integer_pulldown("num_cols", $user->prefs->get("num_cols"), 1, 10) ?>
</td>
</tr>
<tr>
<td class="fieldtitle"><?php echo translate("size of pager on results page") ?></td>
<td class="field">
<?php echo create_integer_pulldown("max_pager_size", $user->prefs->get("max_pager_size"), 1, 20) ?>
</td>
</tr>
<tr>
<td class="fieldtitle"><?php echo translate("minimum rating for random photos") ?></td>
<td class="field">
<?php echo create_integer_pulldown("random_photo_min_rating", $user->prefs->get("random_photo_min_rating"), 0, 10) ?>
</td>
</tr>
<tr>
<td class="fieldtitle"><?php echo translate("number of results to display on reports page") ?></td>
<td class="field">
<?php echo create_integer_pulldown("reports_top_n", $user->prefs->get("reports_top_n"), 1, 20) ?>
</td>
</tr>
<tr>
<td class="fieldtitle"><?php echo translate("time to display each photo in a slideshow") ?></td>
<td class="field">
<?php echo create_text_input("slideshow_time", $user->prefs->get("slideshow_time"), 4, 4) ?> <?php echo translate("seconds") ?>
</td>
</tr>
<tr>
<td class="fieldtitle"><?php echo translate("days past for recent photos links") ?></td>
<td class="field">
<?php echo create_text_input("recent_photo_days", $user->prefs->get("recent_photo_days"), 4, 4) ?>
</td>
</tr>
<tr>
<td class="fieldtitle"><?php echo translate("number of people to add at once") ?></td>
<td class="field">
<?php echo create_integer_pulldown("people_slots", $user->prefs->get("people_slots"), 1, MAX_PEOPLE_SLOTS) ?>
</td>
</tr>
<?php
if (MAX_THUMB_DESC) {
?>
<tr>
<td class="fieldtitle"><?php echo translate("show descriptions under thumbnails") ?></td>
<td class="field">
<?php echo create_pulldown("desc_thumbnails", $user->prefs->get("desc_thumbnails"), array("1" => translate("Yes",0), "0" => translate("No",0)) ) ?>
</td>
</tr>
<?php
}
?>
<tr>
<td class="fieldtitle"><?php echo translate("open fullsize photo in new window") ?></td>
<td class="field">
<?php echo create_pulldown("fullsize_new_win", $user->prefs->get("fullsize_new_win"), array("1" => translate("Yes",0), "0" => translate("No",0)) ) ?>
</td>
<tr>
<td class="fieldtitle"><?php echo translate("display camera info") ?></td>
<td class="field">
<?php echo create_pulldown("camera_info", $user->prefs->get("camera_info"), array("1" => translate("Yes",0), "0" => translate("No",0)) ) ?>
</td>
</tr>
<tr>
<td class="fieldtitle"><?php echo translate("automatically edit photos") ?></td>
<td class="field">
<?php echo create_pulldown("auto_edit", $user->prefs->get("auto_edit"), array("1" => translate("Yes",0), "0" => translate("No",0)) ) ?>
</td>
</tr>
<tr>
<td class="fieldtitle">
<?php
if ($user->is_admin()) {
?>
<a href="color_schemes.php"><?php echo translate("color scheme") ?></a>
<?php
}
else {
?>
<?php echo translate("color scheme") ?>
<?php
}
?>
</td>
<td class="field">
<?php echo create_smart_pulldown("color_scheme_id", $user->prefs->get("color_scheme_id"), create_select_array(get_records("color_scheme", "name"), array("name"))) ?>
</td>
</tr>
<?php
$lang_array = $rtplang->get_available_languages();
$lang_select_array['null'] = 'Browser Default';
while (list($code, $code_to_name) = each($lang_array)) {
$lang_select_array[$code] = $code_to_name[$code];
}
?>
<tr>
<td class="fieldtitle"><?php echo translate("language") ?></td>
<td class="field">
<?php echo create_smart_pulldown("language", $user->prefs->get("language"), $lang_select_array) ?>
</td>
</tr>
<tr>
<td colspan="2" class="center">
<input type="submit" value="<?php echo translate("update") ?>">
</td>
</tr>
</table>
</form>
</div>
<?php require_once("footer.inc.php"); ?>
|