phpldapadmin/lib/search_form_advanced.php

100 lines
3.5 KiB
PHP
Raw Normal View History

2009-06-30 09:22:30 +00:00
<?php
2009-06-30 10:26:08 +00:00
// $Header: /cvsroot/phpldapadmin/phpldapadmin/lib/search_form_advanced.php,v 1.23.2.2 2005/12/08 12:06:58 wurley Exp $
2009-06-30 09:29:51 +00:00
/**
* @package phpLDAPadmin
*/
2009-06-30 08:07:14 +00:00
?>
2009-06-30 09:29:51 +00:00
2009-06-30 10:26:08 +00:00
<script type="text/javascript" language="javascript">
2009-06-30 09:29:51 +00:00
2009-06-30 10:26:08 +00:00
<?php foreach ($server_info_list as $i => $ignore) {
2009-06-30 09:40:37 +00:00
foreach ($server_info_list[$i]['base_dns'] as $base_dn) { ?>
2009-06-30 09:29:51 +00:00
2009-06-30 09:40:37 +00:00
addToServersList(new server(<?php echo $i; ?>,"<?php echo $server_info_list[$i]['name']; ?>","<?php echo $base_dn; ?>"));
2009-06-30 09:29:51 +00:00
2009-06-30 09:40:37 +00:00
<?php } } ?>
2009-06-30 09:29:51 +00:00
function focus_filter() {
2009-06-30 09:22:30 +00:00
document.advanced_search_form.filter.focus();
2009-06-30 09:29:51 +00:00
}
2009-06-30 08:07:14 +00:00
</script>
2009-06-30 09:22:30 +00:00
<form action="search.php" method="get" class="search" name="advanced_search_form">
2009-06-30 08:05:37 +00:00
<input type="hidden" name="search" value="true" />
<input type="hidden" name="form" value="advanced" />
2009-06-30 09:22:30 +00:00
<input type="hidden" name="format" value="<?php echo $format; ?>" />
2009-06-30 08:05:37 +00:00
2009-06-30 10:26:08 +00:00
<center><b><?php echo _('Advanced Search Form'); ?></b></center>
<small>(<a href="search.php?server_id=<?php echo $ldapserver->server_id; ?>&amp;form=simple"><?php echo _('Simple Search Form'); ?></a> |
<a href="search.php?server_id=<?php echo $ldapserver->server_id; ?>&amp;form=predefined"><?php echo _('Predefined Searches'); ?></a>)</small><br />
2009-06-30 08:05:37 +00:00
<br />
<table>
<tr>
2009-06-30 10:26:08 +00:00
<td><small><?php echo _('Server'); ?></small></td>
2009-06-30 08:05:37 +00:00
<td><?php echo $server_menu_html; ?></td>
</tr>
<tr>
2009-06-30 10:26:08 +00:00
<td><small><?php echo _('Base DN'); ?></small></td>
2009-06-30 09:29:51 +00:00
<td><input type="text" name="base_dn" value="<?php echo count($base_dns) == 1 ? $base_dns[0] : '' ?>" style="width: 200px" id="base_dn" />
<?php draw_chooser_link( 'advanced_search_form.base_dn' );
if( isset( $base_dn_is_invalid ) && $base_dn_is_invalid )
2009-06-30 10:26:08 +00:00
echo "<small style=\"color:red; white-space: nowrap\">" . _('This is not a valid DN.') . "</small>";
2009-06-30 09:29:51 +00:00
if( isset( $base_dn_does_not_exist ) && $base_dn_does_not_exist )
2009-06-30 10:26:08 +00:00
echo "<small style=\"color:red; white-space: nowrap\">" . _('This entry does not exist.') . "</small>"; ?>
2009-06-30 09:29:51 +00:00
</td>
2009-06-30 08:05:37 +00:00
</tr>
<tr>
2009-06-30 10:26:08 +00:00
<td><small><acronym title="<?php echo _('The scope in which to search'); ?>"><?php echo _('Search Scope'); ?></acronym></small></td>
2009-06-30 08:05:37 +00:00
<td>
2009-06-30 09:22:30 +00:00
<select name="scope" style="width: 200px">
2009-06-30 08:09:20 +00:00
<option<?php echo $scope=='sub'?' selected':''; ?> value="sub">
2009-06-30 10:26:08 +00:00
<?php echo _('Sub (entire subtree)'); ?>
2009-06-30 08:09:20 +00:00
</option>
<option<?php echo $scope=='one'?' selected':''; ?> value="one">
2009-06-30 10:26:08 +00:00
<?php echo _('One (one level beneath base)'); ?>
2009-06-30 08:09:20 +00:00
</option>
<option<?php echo $scope=='base'?' selected':''; ?> value="base">
2009-06-30 10:26:08 +00:00
<?php echo _('Base (base dn only)'); ?>
2009-06-30 08:09:20 +00:00
</option>
2009-06-30 08:05:37 +00:00
</select>
</td>
</tr>
<tr>
2009-06-30 10:26:08 +00:00
<td><small><acronym title="<?php echo htmlspecialchars(_('Standard LDAP search filter. Example: (&(sn=Smith)(givenname=David))')); ?>">
<?php echo _('Search Filter'); ?></acronym></small></td>
2009-06-30 09:29:51 +00:00
2009-06-30 09:22:30 +00:00
<td><input type="text" name="filter" id="filter" style="width: 200px" value="<?php echo $filter ? htmlspecialchars($filter) : 'objectClass=*'; ?>" /></td>
2009-06-30 08:05:37 +00:00
</tr>
<tr>
2009-06-30 10:26:08 +00:00
<td><small><acronym title="<?php echo _('A list of attributes to display in the results (comma-separated)'); ?>">
<?php echo _('Show Attributtes'); ?></acronym></small></td>
2009-06-30 09:29:51 +00:00
2009-06-30 09:22:30 +00:00
<td><input type="text" name="display_attrs" style="width: 200px" value="<?php
2009-06-30 09:29:51 +00:00
echo isset( $_GET['display_attrs'] ) ?
htmlspecialchars( $_GET['display_attrs'] ) :
join(', ',$config->GetValue('search','result_attributes')); ?>" />
2009-06-30 08:05:37 +00:00
2009-06-30 09:29:51 +00:00
</tr>
2009-06-30 08:05:37 +00:00
<tr>
2009-06-30 10:26:08 +00:00
<td colspan="2"><br /><center><input type="submit" value="<?php echo _('Search'); ?>" /></center></td>
2009-06-30 08:05:37 +00:00
</tr>
</table>
</form>
2009-06-30 09:29:51 +00:00
2009-06-30 10:26:08 +00:00
<script type="text/javascript" language="javascript">
2009-06-30 09:22:30 +00:00
// Move the cursor to the filter field
focus_filter();
</script>