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 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
|
<?php
/*
* Gallery - a web based photo album viewer and editor
* Copyright (C) 2000-2006 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*
* $Id: Form.php 14311 2006-08-14 07:49:09Z jenst $
*/
?>
<?php
function insertFormJS($formName) {
?>
<script type="text/javascript" language="javascript">
// <!--
function setCheck(val,elementName) {
ufne = document.<?php echo $formName; ?>;
for(i = 0 ; i < ufne.elements.length; i++) {
if (ufne.elements[i].name == elementName) {
if (ufne.elements[i].type == 'select-multiple') {
for (j = 0; j < ufne.elements[i].length; j++) {
ufne.elements[i].options[j].selected = val;
}
}
else {
ufne.elements[i].checked = val;
}
}
}
}
function invertCheck(elementName) {
ufne = document.<?php echo $formName; ?>;
len = ufne.elements.length;
for(i = 0 ; i < ufne.elements.length; i++) {
if (ufne.elements[i].name==elementName) {
if (ufne.elements[i].type == 'select-multiple') {
for (j = 0; j < ufne.elements[i].length; j++) {
ufne.elements[i].options[j].selected = !(ufne.elements[i].options[j].selected);
}
}
else {
ufne.elements[i].checked = !(ufne.elements[i].checked);
}
}
}
}
// -->
</script>
<?php
}
function insertFormJSLinks($elementName) {
$buf='
<a href="javascript:setCheck(1,\'' . $elementName . '\')">'. gTranslate('common', "Check All") . '</a>
-
<a href="javascript:setCheck(0,\'' . $elementName . '\')">'. gTranslate('common', "Clear All") . '</a>
-
<a href="javascript:invertCheck(\'' . $elementName . '\')">'. gTranslate('common', "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 generateAttrs($attrList) {
$attrs = '';
if(!empty($attrList) && is_array($attrList)) {
foreach ($attrList as $key => $value) {
if ($value == NULL) {
$attrs .= " $key";
}
else {
$attrs .= " $key=\"$value\"";
}
}
}
return $attrs;
}
function drawSelect($name, $options, $selected, $size, $attrList = array(), $prettyPrinting = false) {
$crlf = ($prettyPrinting) ? "\n\t" : '';
$attrs = generateAttrs($attrList);
$buf = "<select name=\"$name\" size=\"$size\"$attrs>" . $crlf;
if(!empty($options)) {
foreach ($options as $value => $text) {
$sel = '';
if (is_array($selected)) {
if (in_array($value, $selected)) {
$sel = ' selected';
}
}
else if ($value == $selected || $text === $selected || $selected === '__ALL__') {
$sel = ' selected';
}
$buf .= "<option value=\"$value\"$sel>". $text ."</option>" . $crlf;
}
}
$buf .= '</select>'. $crlf;
return $buf;
}
function drawSelect2($name, $options, $attrList = array(), $args = array()) {
$crlf = (isset($args['prettyPrinting'])) ? "\n\t" : '';
if (!isset($attrList['size'])) {
$attrList['size'] = 1;
}
$attrs = generateAttrs($attrList);
$buf = "<select name=\"$name\" $attrs>$crlf";
if(!empty($options)) {
foreach ($options as $nr => $option) {
$sel = isset($option['selected']) ? ' selected' : '';
$optAttrs = isset($option['attrs']) ? generateAttrs($option['attrs']) : '';
$buf .= "\n\t". "<option $optAttrs value=\"". $option['value'] ."\" $sel>". $option['text'] ."</option>$crlf";
}
}
$buf .= "</select>". $crlf;
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"));
*
* If no method is given in attrList, then "POST" is used.
*/
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];
$tmp = (sizeof($result) > 1) ? $result[1] :'';
$defaults = array(
'method' => 'POST',
'name' => 'g1_form'
);
foreach($defaults as $attr => $value) {
if(!isset($attrList[$attr])) {
$attrList[$attr] = $value;
}
}
$attrs = generateAttrs($attrList);
$form = "\n<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]);
}
/**
* The code below was inspired from the Horde Framework (http://www.horde.org)
* It was taken from: framework/UI/UI/VarRenderer/html.php,v 1.106
* Copyright 2003-2005 Jason M. Felice <jfelice@cronosys.com>
*
* Jens Tkotz 25.04.2005
*/
function showColorpicker($attrs = array()) {
$args = array(
'target' => $attrs['name'],
'gallery_popup' => true
);
$colorPickerUrl = makeGalleryUrl('colorpicker.php', $args);
$imgColorpicker = '<img src="'. getImagePath('colorpicker.png') .'" height="16" alt="colorpicker">';
$html = "\n<table cellspacing=\"0\">";
$html .= "\n<tr>";
$html .= "\n". '<td><input type="text" size="10" maxlength="7" name="'. $attrs['name'] .'" id="'. $attrs['name'] .'" value="'. $attrs['value'] .'"></td>';
$html .= "\n". '<td width="20" id="colordemo_' . $attrs['name'] . '" style="background-color:' . $attrs['value'] . '"> </td>';
$html .= "\n<td><a href=\"$colorPickerUrl\" onclick=\"window.open('$colorPickerUrl', 'colorpicker', 'toolbar=no,location=no,status=no,scrollbars=no,resizable=no,width=120,height=250,left=100,top=100'); return false;\" onmouseout=\"window.status='';\" onmouseover=\"window.status='". gTranslate('common', "Colorpicker") ."'; return true;\" target=\"colorpicker\">". $imgColorpicker .'</a></td>';
$html .= "\n". '<td><div id="colorpicker_' . $attrs['name'] . '"></div></td>';
$html .= "\n</tr></table>\n";
return $html;
}
function showChoice2($target, $args, $popup = true) {
global $gallery;
if (empty($args['set_albumName'])) {
$args['set_albumName'] = $gallery->session->albumName;
}
if($popup) {
$args['type'] = 'popup';
}
return makeGalleryUrl($target, $args);
}
?>
|