You are here

function finder_inc in Finder 7.2

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

Load a finder include file.

Parameters

$file: The name of the file in the includes directory without the extension.

$module: The module name if it is not 'finder'.

17 calls to finder_inc()
finder::build in includes/finder.inc
Finder build.
finder::choice_repopulate in includes/finder.inc
Finder choice repopulate.
finder::element_arguments in includes/finder.inc
Finder element arguments.
finder::render in includes/finder.inc
Finder render.
finder_ajax in ./finder.module
Ajax callback; get finder ajax output.

... See full list

File

./finder.module, line 303
The finder module.

Code

function finder_inc($file, $module = 'finder') {
  return ctools_include($file, $module);
}