function dblog_clear_log_form

Form constructor for the form that clears out the log.

See also

dblog_clear_log_submit()

Related topics

1 string reference to 'dblog_clear_log_form'
dblog_overview in modules/dblog/dblog.admin.inc
Page callback: Displays a listing of database log messages.

File

modules/dblog/dblog.admin.inc, line 407

Code

function dblog_clear_log_form($form) {
    $form['dblog_clear'] = array(
        '#type' => 'fieldset',
        '#title' => t('Clear log messages'),
        '#description' => t('This will permanently remove the log messages from the database.'),
        '#collapsible' => TRUE,
        '#collapsed' => TRUE,
    );
    $form['dblog_clear']['clear'] = array(
        '#type' => 'submit',
        '#value' => t('Clear log messages'),
        '#submit' => array(
            'dblog_clear_log_submit',
        ),
    );
    return $form;
}

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