1 ajax_test.module 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 backdrop_add_js() with a dummy setting.

File

core/modules/simpletest/tests/ajax_test.module, line 59
Helper module for Ajax framework tests.

Code

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