You are here

function hook_finder_export_alter in Finder 6

Alter the default output of an export string.

Parameters

&$out: The fully assembled default string.

$tab: The tab variable from finder_export.

$key: The key variable from finder_export.

$value: The value variable from finder_export.

$iteration: The iteration variable from finder_export.

1 invocation of hook_finder_export_alter()
finder_export in ./finder.module
Build finder code string recursively.

File

./finder.api.php, line 380
Documents finder's hooks for api reference.

Code

function hook_finder_export_alter(&$out, $tab, $key, $value, $iteration) {
  $out = $tab . "  '" . $key . "' => " . finder_export($value, $iteration) . ",\n";
}