function hook_finder_path_alter in Finder 7.2
Provide or alter the path to a views result item.
Parameters
&$path: A raw path that can be put into url() or l() that can be used to link to or redirect to the object. If set to FALSE will prevent redirect.
$table: Base table for this type of object.
$id: The value of the primary key for this record.
See also
finder::goto()
1 invocation of hook_finder_path_alter()
- finder_path in includes/
build.inc - Get the raw link to an object given the table and id.
File
- ./
finder.api.php, line 266 - Documents finder's hooks for api reference.
Code
function hook_finder_path_alter(&$path, $table, $id) {
// no example code
}