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
|
<?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: Form.php,v 1.16.2.2 2005/04/14 01:48:30 cryptographite Exp $
*/
?>
<?php
function insertFormJS($formName) {
?>
<script type="text/javascript" language="javascript">
// <!--
function setCheck(val,elementName) {
ufne=document.<?php echo $formName; ?>;
len = ufne.elements.length;
for(i = 0 ; i < len ; i++) {
if (ufne.elements[i].name==elementName) {
ufne.elements[i].checked=val;
}
}
}
function invertCheck(elementName) {
ufne=document.<?php echo $formName; ?>;
len = ufne.elements.length;
for(i = 0 ; i < len ; i++) {
if (ufne.elements[i].name==elementName) {
ufne.elements[i].checked = !(ufne.elements[i].checked);
}
}
}
// -->
</script>
<?php
}
function insertFormJSLinks($elementName) {
$buf='
<a href="javascript:setCheck(1,\'' . $elementName . '\')">'. _("Check All") . '</a>
-
<a href="javascript:setCheck(0,\'' . $elementName . '\')">'. _("Clear All") . '</a>
-
<a href="javascript:invertCheck(\'' . $elementName . '\')">'. _("Invert Selection") .'</a>';
return $buf;
}
/*
** $opts is now a name/value array, where $key is the value returned, and $name
** is the value displayed (and translated).
*/
function selectOptions($album, $field, $opts) {
foreach ($opts as $key => $value) {
$sel = "";
if (isset($album->fields[$field]) && !strcmp($key, $album->fields[$field])) {
$sel = "selected";
}
echo "\n\t<option value=\"$key\" $sel>$value</option>";
}
echo "\n";
}
function drawSelect($name, $array, $selected, $size, $attrList=array()) {
$attrs = "";
if (!empty($attrList)) {
$attrs = " ";
foreach ($attrList as $key => $value) {
if ($value == NULL) {
$attrs .= " $key";
}
else {
$attrs .= " $key=\"$value\"";
}
}
}
$buf = "";
$buf .= "<select name=\"$name\" size=\"$size\"$attrs>";
foreach ($array as $uid => $username) {
$sel = "";
if (is_array($selected)) {
if (in_array($uid, $selected)) {
$sel = " selected";
}
}
else if (!strcmp($uid, $selected)) {
$sel = " selected";
}
$buf .= "<option value=\"$uid\"$sel>". $username ."</option>";
}
$buf .= "</select>";
return $buf;
}
/*
* makeFormIntro() is a wrapper around makeGalleryUrl() that will generate
* a <form> tag suitable for usage in either standalone or embedded mode.
* You can specify the additional attributes you want in the optional second
* argument. Eg:
*
* makeFormIntro("add_photos.php",
* array("name" => "count_form",
* "enctype" => "multipart/form-data",
* "method" => "POST"));
*/
function makeFormIntro($target, $attrList=array(), $urlargs=array()) {
// We don't want the result HTML escaped since we split on "&", below
// use the header version of makeGalleryUrl()
$url = makeGalleryHeaderUrl($target, $urlargs);
$result = split("\?", $url);
$target = $result[0];
if (sizeof($result) > 1) {
$tmp = $result[1];
} else {
$tmp = "";
}
$attrs = '';
foreach ($attrList as $key => $value) {
$attrs .= " $key=\"$value\"";
}
$form = "<form action=\"$target\" $attrs>\n";
$args = split("&", $tmp);
foreach ($args as $arg) {
if (strlen($arg) == 0) {
continue;
}
list($key, $val) = split("=", $arg);
$form .= "<input type=\"hidden\" name=\"$key\" value=\"$val\">\n";
}
return $form;
}
function formVar($name) {
if (!strncmp($_REQUEST[$name], 'false', 5)) {
return false;
} else {
return getRequestVar($name);
}
}
function emptyFormVar($name) {
return !isset($_REQUEST[$name]);
}
?>
|