| Versionen | |
|---|---|
| drupal6 – drupal7 | forum_form_main($type, $edit = array()) |
modules/
<?php
function forum_form_main($type, $edit = array()) {
if ((isset($_POST['op']) && $_POST['op'] == t('Delete')) || !empty($_POST['confirm'])) {
return drupal_get_form('forum_confirm_delete', $edit['tid']);
}
switch ($type) {
case 'forum':
return drupal_get_form('forum_form_forum', $edit);
break;
case 'container':
return drupal_get_form('forum_form_container', $edit);
break;
}
}
?>
Kommentare
Kommentar hinzufügen