You are here

function ahah_response_theme in AHAH Response 6

Implementation of hook_theme().

File

./ahah_response.module, line 19
Provides a themehook to allow for greater control of the response object sent by modules implementing an AHAH callback.

Code

function ahah_response_theme() {
  return array(
    'ahah_response' => array(
      'template' => 'ahah-response',
      'arguments' => array(
        'content' => NULL,
        'status' => TRUE,
        'messages' => NULL,
        'settings' => NULL,
      ),
    ),
    'ahah_response_settings_js' => array(
      'arguments' => array(
        'settings' => NULL,
      ),
    ),
  );
}