function ajax_test_render

Menu callback; Return an element suitable for use by ajax_deliver().

Additionally ensures that ajax_render() incorporates JavaScript settings generated during the page request by invoking drupal_add_js() with a dummy setting.

1 string reference to 'ajax_test_render'
ajax_test_menu in drupal-7.x/modules/simpletest/tests/ajax_test.module
Implements hook_menu().

Archivo

drupal-7.x/modules/simpletest/tests/ajax_test.module, line 49
Helper module for Ajax framework tests.

Código

function ajax_test_render() {
  drupal_add_js(array('ajax' => 'test'), 'setting');
  return array(
    '#type' => 'ajax',
    '#commands' => array(),
  );
}