function trigger_test_system_cron_conf_action_submit

Form submission handler for configurable test action.

File

modules/trigger/tests/trigger_test.module, line 112

Code

function trigger_test_system_cron_conf_action_submit($form, $form_state) {
    $form_values = $form_state['values'];
    // Process the HTML form to store configuration. The keyed array that
    // we return will be serialized to the database.
    $params = array(
        'subject' => $form_values['subject'],
    );
    return $params;
}

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