Viewing file: search.php (5.82 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*************************
Coppermine Photo Gallery
************************
Copyright (c) 2003-2008 Dev Team
v1.1 originally written by Gregory DEMAR
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 3
as published by the Free Software Foundation.
********************************************
Coppermine version: 1.4.18
$HeadURL: https://coppermine.svn.sourceforge.net/svnroot/coppermine/trunk/cpg1.4.x/search.php $
$Revision: 4380 $
$Author: gaugau $
$Date: 2008-04-12 12:00:19 +0200 (Sa, 12 Apr 2008) $
**********************************************/
define('IN_COPPERMINE', true);
define('SEARCH_PHP', true);
require('include/init.inc.php');
if (!USER_ID && $CONFIG['allow_unlogged_access'] == 0) {
$redirect = $redirect . "login.php";
header("Location: $redirect");
exit();
}
pageheader($lang_search_php['title']);
echo <<< EOT
<form method="post" action="thumbnails.php" name="searchcpg">
EOT;
starttable('60%', $lang_search_php['title']);
$ip = GALLERY_ADMIN_MODE ? '
<tr>
<td>
<input type="checkbox" name="pic_raw_ip" class="checkbox" id="pic_raw_ip" /><label for="pic_raw_ip" class="clickable_option">'.$lang_search_php['ip_address'].'</label>
</td>
</tr>' :
'<tr>
<td> </td>
<td> </td>
</tr>';
$customs = '';
$result = cpg_db_query("SELECT * FROM {$CONFIG['TABLE_CONFIG']} WHERE name LIKE 'user_field%_name' AND value <> '' ORDER BY name ASC");
while ($row = mysql_fetch_assoc($result)){
$name = str_replace(array('_field', '_name'), '', $row['name']);
$customs .= <<< EOT
<tr>
<td><input type="checkbox" name="$name" id="$name" class="checkbox" /><label for="$name" class="clickable_option">{$row['value']}</label></td>
</tr>
EOT;
}
echo <<< EOT
<tr>
<td class="tableb" align="center" >
<input type="text" style="width: 80%" name="search" maxlength="255" value="" class="textinput" />
<input type="submit" value="{$lang_search_php['submit_search']}" class="button" />
<input type="hidden" name="album" value="search" />
</td>
</tr>
<tr>
<td class="tableb">
<table align="center" width="60%">
<tr>
<td>{$lang_search_php['fields']}:</td>
<td align="center">{$lang_search_php['age']}:</td>
</tr>
<tr>
<td><input type="checkbox" name="title" id="title" class="checkbox" checked="checked" /><label for="title" class="clickable_option">{$lang_adv_opts['title']}</label></td>
<td align="right">{$lang_search_php['newer_than']} <input type="text" name="newer_than" size="3" maxlength="4" class="textinput" /> {$lang_search_php['days']}</td>
</tr>
<tr>
<td><input type="checkbox" name="caption" id="caption" class="checkbox" checked="checked" /><label for="caption" class="clickable_option">{$lang_adv_opts['caption']}</label></td>
<td align="right">{$lang_search_php['older_than']} <input type="text" name="older_than" size="3" maxlength="4" class="textinput" /> {$lang_search_php['days']}</td>
</tr>
<tr>
<td><input type="checkbox" name="keywords" id="keywords" class="checkbox" checked="checked" /><label for="keywords" class="clickable_option">{$lang_adv_opts['keywords']}</label></td>
<td> </td>
</tr>
<tr>
<td><input type="checkbox" name="owner_name" id="owner_name" class="checkbox" /><label for="owner_name" class="clickable_option">{$lang_adv_opts['owner_name']}</label></td>
<td align="right"><select name="type" class="listbox">
<option value="AND" selected="selected">{$lang_search_php['all_words']}</option>
<option value="OR">{$lang_search_php['any_words']}</option></select>
</td>
</tr>
<tr>
<td><input type="checkbox" name="filename" id="filename" class="checkbox" /><label for="filename" class="clickable_option">{$lang_adv_opts['filename']}</label></td>
<td> </td>
</tr>
$customs
$ip
</table>
</td>
</tr>
EOT;
endtable();
echo '</form>';
if ($CONFIG['clickable_keyword_search'] != 0) {
include('include/keyword.inc.php');
}
echo <<< EOT
<script language="javascript" type="text/javascript">
<!--
document.searchcpg.search.focus();
-->
</script>
EOT;
pagefooter();
ob_end_flush();
?>
|