You are here

function ajax_ui_invoke_types in Ajax 6

Invokes hooks: ajax_types

Parameters

$types Assoc:

Return value

Bool

1 call to ajax_ui_invoke_types()
ajax_ui_get_types in ajax_ui/ajax_ui.module
Get content types

File

ajax_ui/ajax_ui.module, line 63

Code

function ajax_ui_invoke_types(&$types) {
  $hook = 'ajax_types';
  foreach (module_implements($hook) as $name) {
    $function = $name . '_' . $hook;
    $result = $function($types);
  }
  return TRUE;
}