function forum_form_main

Page callback: Returns a form for creating a new forum or container.

Parameters

$type: What is being added. Possible values are 'forum' and 'container'.

$edit: (optional) Associative array containing a forum term to be edited. Defaults to an empty array.

Return value

A form for creating a new forum or container.

See also

forum_menu()

1 string reference to 'forum_form_main'
forum_menu in modules/forum/forum.module
Implements hook_menu().

File

modules/forum/forum.admin.inc, line 22

Code

function forum_form_main($type, $edit = array()) {
    $edit = (array) $edit;
    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;
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.