function ajax_forms_test_ajax_commands_form

Form to display the Ajax Commands.

2 string references to 'ajax_forms_test_ajax_commands_form'
AJAXCommandsTestCase::testAJAXCommands in modules/simpletest/tests/ajax.test
Test the various Ajax Commands.
ajax_forms_test_menu in modules/simpletest/tests/ajax_forms_test.module
Implements hook_menu().

File

modules/simpletest/tests/ajax_forms_test.module, line 97

Code

function ajax_forms_test_ajax_commands_form($form, &$form_state) {
    $form = array();
    // Shows the 'after' command with a callback generating commands.
    $form['after_command_example'] = array(
        '#value' => t("AJAX 'After': Click to put something after the div"),
        '#type' => 'submit',
        '#ajax' => array(
            'callback' => 'ajax_forms_test_advanced_commands_after_callback',
        ),
        '#suffix' => '<div id="after_div">Something can be inserted after this</div>',
    );
    // Shows the 'alert' command.
    $form['alert_command_example'] = array(
        '#value' => t("AJAX 'Alert': Click to alert"),
        '#type' => 'submit',
        '#ajax' => array(
            'callback' => 'ajax_forms_test_advanced_commands_alert_callback',
        ),
    );
    // Shows the 'append' command.
    $form['append_command_example'] = array(
        '#value' => t("AJAX 'Append': Click to append something"),
        '#type' => 'submit',
        '#ajax' => array(
            'callback' => 'ajax_forms_test_advanced_commands_append_callback',
        ),
        '#suffix' => '<div id="append_div">Append inside this div</div>',
    );
    // Shows the 'before' command.
    $form['before_command_example'] = array(
        '#value' => t("AJAX 'before': Click to put something before the div"),
        '#type' => 'submit',
        '#ajax' => array(
            'callback' => 'ajax_forms_test_advanced_commands_before_callback',
        ),
        '#suffix' => '<div id="before_div">Insert something before this.</div>',
    );
    // Shows the 'changed' command without asterisk.
    $form['changed_command_example'] = array(
        '#value' => t("AJAX changed: Click to mark div changed."),
        '#type' => 'submit',
        '#ajax' => array(
            'callback' => 'ajax_forms_test_advanced_commands_changed_callback',
        ),
        '#suffix' => '<div id="changed_div"> <div id="changed_div_mark_this">This div can be marked as changed or not.</div></div>',
    );
    // Shows the 'changed' command adding the asterisk.
    $form['changed_command_asterisk_example'] = array(
        '#value' => t("AJAX changed: Click to mark div changed with asterisk."),
        '#type' => 'submit',
        '#ajax' => array(
            'callback' => 'ajax_forms_test_advanced_commands_changed_asterisk_callback',
        ),
    );
    // Shows the Ajax 'css' command.
    $form['css_command_example'] = array(
        '#value' => t("Set the '#box' div to be blue."),
        '#type' => 'submit',
        '#ajax' => array(
            'callback' => 'ajax_forms_test_advanced_commands_css_callback',
        ),
        '#suffix' => '<div id="css_div" style="height: 50px; width: 50px; border: 1px solid black"> box</div>',
    );
    // Shows the Ajax 'data' command. But there is no use of this information,
    // as this would require a javascript client to use the data.
    $form['data_command_example'] = array(
        '#value' => t("AJAX data command: Issue command."),
        '#type' => 'submit',
        '#ajax' => array(
            'callback' => 'ajax_forms_test_advanced_commands_data_callback',
        ),
        '#suffix' => '<div id="data_div">Data attached to this div.</div>',
    );
    // Shows the Ajax 'invoke' command.
    $form['invoke_command_example'] = array(
        '#value' => t("AJAX invoke command: Invoke addClass() method."),
        '#type' => 'submit',
        '#ajax' => array(
            'callback' => 'ajax_forms_test_advanced_commands_invoke_callback',
        ),
        '#suffix' => '<div id="invoke_div">Original contents</div>',
    );
    // Shows the Ajax 'html' command.
    $form['html_command_example'] = array(
        '#value' => t("AJAX html: Replace the HTML in a selector."),
        '#type' => 'submit',
        '#ajax' => array(
            'callback' => 'ajax_forms_test_advanced_commands_html_callback',
        ),
        '#suffix' => '<div id="html_div">Original contents</div>',
    );
    // Shows the Ajax 'insert' command.
    $form['insert_command_example'] = array(
        '#value' => t("AJAX insert: Let client insert based on #ajax['method']."),
        '#type' => 'submit',
        '#ajax' => array(
            'callback' => 'ajax_forms_test_advanced_commands_insert_callback',
            'method' => 'prepend',
        ),
        '#suffix' => '<div id="insert_div">Original contents</div>',
    );
    // Shows the Ajax 'prepend' command.
    $form['prepend_command_example'] = array(
        '#value' => t("AJAX 'prepend': Click to prepend something"),
        '#type' => 'submit',
        '#ajax' => array(
            'callback' => 'ajax_forms_test_advanced_commands_prepend_callback',
        ),
        '#suffix' => '<div id="prepend_div">Something will be prepended to this div. </div>',
    );
    // Shows the Ajax 'remove' command.
    $form['remove_command_example'] = array(
        '#value' => t("AJAX 'remove': Click to remove text"),
        '#type' => 'submit',
        '#ajax' => array(
            'callback' => 'ajax_forms_test_advanced_commands_remove_callback',
        ),
        '#suffix' => '<div id="remove_div"><div id="remove_text">text to be removed</div></div>',
    );
    // Shows the Ajax 'restripe' command.
    $form['restripe_command_example'] = array(
        '#type' => 'submit',
        '#value' => t("AJAX 'restripe' command"),
        '#ajax' => array(
            'callback' => 'ajax_forms_test_advanced_commands_restripe_callback',
        ),
        '#suffix' => '<div id="restripe_div">
                  <table id="restripe_table" style="border: 1px solid black" >
                  <tr id="table-first"><td>first row</td></tr>
                  <tr ><td>second row</td></tr>
                  </table>
                  </div>',
    );
    // Demonstrates the Ajax 'settings' command. The 'settings' command has
    // nothing visual to "show", but it can be tested via SimpleTest and via
    // Firebug.
    $form['settings_command_example'] = array(
        '#type' => 'submit',
        '#value' => t("AJAX 'settings' command"),
        '#ajax' => array(
            'callback' => 'ajax_forms_test_advanced_commands_settings_callback',
        ),
    );
    // Shows the Ajax 'add_css' command.
    $form['add_css_command_example'] = array(
        '#type' => 'submit',
        '#value' => t("AJAX 'add_css' command"),
        '#ajax' => array(
            'callback' => 'ajax_forms_test_advanced_commands_add_css_callback',
        ),
    );
    $form['submit'] = array(
        '#type' => 'submit',
        '#value' => t('Submit'),
    );
    return $form;
}

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