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
|
<?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 (!$user->is_admin() && !$user->get("browse_people")) {
header("Location: " . add_sid("zoph.php"));
}
$_l = getvar("_l");
if (empty($_l)) {
if (DEFAULT_SHOW_ALL) {
$_l = "all";
}
else {
$_l = "a";
}
}
$title = translate("People");
require_once("header.inc.php");
?>
<h1>
<?php
if ($user->is_admin()) {
?>
<span class="actionlink"><a href="person.php?_action=new"><?php echo translate("new") ?></a></span>
<?php
}
?>
<?php echo translate("people") ?></h1>
<div class="letter">
<?php
for ($l = 'a'; $l <= 'z' && $l != 'aa'; $l++) {
$title = $l;
if ($l == $_l) {
$title = "<span class=\"selected\">" . strtoupper($title) . "</span>";
}
?>
<a href="people.php?_l=<?php echo $l ?>"><?php echo $title ?></a> |
<?php
}
?>
<a href="people.php?_l=no%20last%20name"><?php echo translate("no last name") ?></a> |
<a href="people.php?_l=all"><?php echo translate("all") ?></a>
</div>
<div class="main">
<?php
$constraints = null;
if ($_l == "all") {
// no contraint
}
else if ($_l == "no last name") {
$constraints["last_name#1"] = "null";
$ops["last_name#1"] = "is";
$constraints["last_name#2"] = "''";
}
else {
$constraints["lower(last_name)"] = "$_l%";
$ops["lower(last_name)"] = "like";
}
$ppl = get_people($constraints, "or", $ops);
if ($ppl) {
foreach($ppl as $p) {
?>
<span class="actionlink"><a href="person.php?person_id=<?php echo $p->get("person_id") ?>"><?php echo translate("view") ?></a> | <a href="photos.php?person_id=<?php echo $p->get("person_id") ?>"><?php echo translate("photos of") ?></a> | <a href="photos.php?photographer_id=<?php echo $p->get("person_id") ?>"><?php echo translate("photos by") ?></a></span>
<a class="person" href="person.php?person_id=<?php echo $p->get("person_id") ?>"><?php echo $p->get("last_name") ? $p->get("last_name") . ", " : "" ?><?php echo $p->get("first_name") ?></a>
<?php
}
}
else {
?>
<div class="error"><?php echo sprintf(translate("No people were found with a last name beginning with '%s'."), $_l) ?></div>
<?php
}
?>
</div>
<?php
require_once("footer.inc.php");
?>
|