You are here

function finder_forms in Finder 6

Same name and namespace in other branches
  1. 7.2 finder.module \finder_forms()
  2. 7 finder.module \finder_forms()

Implementation of hook_forms().

See also

hook_forms()

File

./finder.module, line 221
The finder module.

Code

function finder_forms($form_id, $args) {
  if (strpos($form_id, 'finder_form_') === 0) {
    $forms[$form_id] = array(
      'callback' => 'finder_form',
      'callback arguments' => $args,
    );
    return $forms;
  }
}