function finder::build in Finder 7.2
Finder build.
Prepare a finder for execution and rendering.
2 calls to finder::build()
- finder::find in includes/
finder.inc - Finder find.
- finder::render in includes/
finder.inc - Finder render.
File
- includes/
finder.inc, line 405 - finder.inc
Class
- finder
- An object to contain all of the data to generate a finder, plus the member functions to build the finder, and render the output.
Code
function build() {
if (empty($this->built)) {
finder_inc('build');
$this
->build_elements();
}
$this->built = TRUE;
}