149 lines
5.8 KiB
PHP
149 lines
5.8 KiB
PHP
<?php
|
|
/**
|
|
* Displays a last chance confirmation form to delete a DN.
|
|
*
|
|
* @package phpLDAPadmin
|
|
* @subpackage Page
|
|
*/
|
|
|
|
/**
|
|
*/
|
|
|
|
require './common.php';
|
|
|
|
# The DN we are working with
|
|
$request = array();
|
|
$request['dn'] = get_request('dn','GET');
|
|
|
|
$request['page'] = new PageRender($app['server']->getIndex(),get_request('template','REQUEST',false,'none'));
|
|
$request['page']->setDN($request['dn']);
|
|
$request['page']->accept();
|
|
$request['template'] = $request['page']->getTemplate();
|
|
|
|
# Check if the entry exists.
|
|
if (! $request['dn'] || ! $app['server']->dnExists($request['dn']))
|
|
system_message(array(
|
|
'title'=>_('Entry does not exist'),
|
|
'body'=>sprintf(_('The entry (%s) does not exist.'),$request['dn']),
|
|
'type'=>'error'),'index.php');
|
|
|
|
# We search all children, not only the visible children in the tree
|
|
$request['children'] = $app['server']->getContainerContents($request['dn'],null,0,'(objectClass=*)',LDAP_DEREF_NEVER);
|
|
|
|
printf('<h3 class="title">%s %s</h3>',_('Delete'),htmlspecialchars(get_rdn($request['dn'])));
|
|
printf('<h3 class="subtitle">%s: <b>%s</b></h3>',
|
|
_('DN'),$request['dn']);
|
|
echo "\n";
|
|
|
|
echo '<center>';
|
|
|
|
if (count($request['children'])) {
|
|
printf('<b>%s</b><br /><br />',_('Permanently delete all children also?'));
|
|
|
|
$search['href'] = htmlspecialchars(sprintf('cmd.php?cmd=query_engine&server_id=%s&filter=%s&base=%s&scope=sub&query=none&format=list&search=true',
|
|
$app['server']->getIndex(),rawurlencode('objectClass=*'),rawurlencode($request['dn'])));
|
|
|
|
$query = array();
|
|
$query['base'] = $request['dn'];
|
|
$query['scope'] = 'sub';
|
|
$query['attrs'] = array('dn');
|
|
$query['size_limit'] = 0;
|
|
$query['deref'] = LDAP_DEREF_NEVER;
|
|
$request['search'] = $app['server']->query($query,null);
|
|
|
|
echo '<table class="forminput" border="0">';
|
|
echo '<tr>';
|
|
echo '<td colspan="2">';
|
|
printf(_('This entry is the root of a sub-tree containing %s entries.'),count($request['search']));
|
|
printf(' <small>(<a href="%s">%s</a>)</small>',
|
|
$search['href'],_('view entries'));
|
|
echo '</td></tr>';
|
|
|
|
echo '<tr><td colspan="2"> </td></tr>';
|
|
|
|
echo '<tr>';
|
|
echo '<td style="width: 50%; text-align: center;">';
|
|
echo '<form action="cmd.php" method="post" id="delete_form">';
|
|
echo '<input type="hidden" name="cmd" value="rdelete" />';
|
|
printf('<input type="hidden" name="server_id" value="%s" />',$app['server']->getIndex());
|
|
printf('<input type="hidden" name="dn" value="%s" />',$request['template']->getDNEncode(false));
|
|
//@todo need to refresh the tree after a delete
|
|
printf('<input type="submit" value="%s" %s />',
|
|
sprintf(_('Delete all %s objects'),count($request['search'])),
|
|
(isAjaxEnabled() ? sprintf('onclick="return ajSUBMIT(\'BODY\',document.getElementById(\'delete_form\'),\'%s\');"',_('Deleting objects')) : ''));
|
|
echo '</form>';
|
|
echo '</td>';
|
|
|
|
echo '<td style="width: 50%; text-align: center;">';
|
|
echo '<form action="cmd.php" method="get">';
|
|
echo '<input type="hidden" name="cmd" value="template_engine" />';
|
|
printf('<input type="hidden" name="server_id" value="%s" />',$app['server']->getIndex());
|
|
printf('<input type="hidden" name="dn" value="%s" />',$request['template']->getDNEncode(false));
|
|
printf('<input type="submit" name="submit" value="%s" %s />',
|
|
_('Cancel'),
|
|
(isAjaxEnabled() ? sprintf('onclick="return ajDISPLAY(\'BODY\',\'cmd=template_engine&server_id=%s&dn=%s\',\'%s\');"',$app['server']->getIndex(),$request['template']->getDNEncode(),_('Retrieving DN')) : ''));
|
|
echo '</form>';
|
|
echo '</td>';
|
|
echo '</tr>';
|
|
echo "\n";
|
|
|
|
echo '</table>';
|
|
echo "\n";
|
|
|
|
echo '<br /><br />';
|
|
echo _('List of entries to be deleted:');
|
|
echo '<br />';
|
|
|
|
$i = 0;
|
|
printf('<select size="%s" multiple disabled style="background:white; color:black;width:500px" >',min(10,count($request['search'])));
|
|
foreach ($request['search'] as $key => $value)
|
|
printf('<option>%s. %s</option>',++$i,dn_unescape($value['dn']));
|
|
echo '</select>';
|
|
echo "\n";
|
|
|
|
} else {
|
|
echo '<table class="forminput" border="0">';
|
|
|
|
printf('<tr><td colspan="4">%s</td></tr>',_('Are you sure you want to permanently delete this object?'));
|
|
echo '<tr><td colspan="4"> </td></tr>';
|
|
|
|
printf('<tr><td style="width: 10%%;">%s:</td><td colspan="3" style="width: 75%%;"><b>%s</b></td></tr>',_('Server'),$app['server']->getName());
|
|
printf('<tr><td style="width: 10%%;"><acronym title="%s">%s</acronym></td><td colspan="3" style="width: 75%%;"><b>%s</b></td></tr>',
|
|
_('DN'),_('DN'),$request['dn']);
|
|
echo '<tr><td colspan="4"> </td></tr>';
|
|
echo "\n";
|
|
|
|
echo '<tr>';
|
|
echo '<td colspan="2" style="width: 50%; text-align: center;">';
|
|
echo '<form action="cmd.php" method="post" id="delete_form">';
|
|
echo '<input type="hidden" name="cmd" value="delete" />';
|
|
printf('<input type="hidden" name="server_id" value="%s" />',$app['server']->getIndex());
|
|
printf('<input type="hidden" name="dn" value="%s" />',$request['template']->getDNEncode(false));
|
|
//@todo need to refresh the tree after a delete
|
|
printf('<input type="submit" name="submit" value="%s" %s />',
|
|
_('Delete'),
|
|
(isAjaxEnabled() ? sprintf('onclick="return ajSUBMIT(\'BODY\',document.getElementById(\'delete_form\'),\'%s\');"',_('Deleting objects')) : ''));
|
|
echo '</form>';
|
|
|
|
echo '</td>';
|
|
echo '<td colspan="2" style="width: 50%; text-align: center;">';
|
|
|
|
echo '<form action="cmd.php" method="get">';
|
|
echo '<input type="hidden" name="cmd" value="template_engine" />';
|
|
printf('<input type="hidden" name="server_id" value="%s" />',$app['server']->getIndex());
|
|
printf('<input type="hidden" name="dn" value="%s" />',$request['template']->getDNEncode(false));
|
|
printf('<input type="submit" name="submit" value="%s" %s />',
|
|
_('Cancel'),
|
|
(isAjaxEnabled() ? sprintf('onclick="return ajDISPLAY(\'BODY\',\'cmd=template_engine&server_id=%s&dn=%s\',\'%s\');"',$app['server']->getIndex(),$request['template']->getDNEncode(),_('Retrieving DN')) : ''));
|
|
echo '</form>';
|
|
|
|
echo '</td>';
|
|
echo '</tr>';
|
|
echo '</table>';
|
|
echo "\n";
|
|
}
|
|
|
|
echo '</center>';
|
|
echo '<br />';
|
|
?>
|