function hook_finder_views_path_alter in Finder 6
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
1 invocation of hook_finder_views_path_alter()
- finder_views_path in modules/
finder_views/ finder_views.module - Get the raw link to an object given the table and id.
File
- ./
finder.api.php, line 398 - Documents finder's hooks for api reference.
Code
function hook_finder_views_path_alter(&$path, $table, $id) {
// no example code
}