| Versionen | |
|---|---|
| drupal6 – drupal7 | comment_admin($type = 'new') |
Menu callback; present an administrative comment listing.
modules/
<?php
function comment_admin($type = 'new') {
$edit = $_POST;
if (isset($edit['operation']) && ($edit['operation'] == 'delete') && isset($edit['comments']) && $edit['comments']) {
return drupal_get_form('comment_multiple_delete_confirm');
}
else {
return drupal_get_form('comment_admin_overview', $type, arg(4));
}
}
?>
Kommentare
Kommentar hinzufügen