function _flag_url in Flag 6.2
Same name and namespace in other branches
- 5 flag.inc \_flag_url()
- 6 flag.inc \_flag_url()
- 7.2 flag.inc \_flag_url()
A shortcut function to output the link URL.
3 calls to _flag_url()
File
- ./
flag.inc, line 1767 - Implements various flags. Uses object oriented style inspired by that of Views 2.
Code
function _flag_url($path, $fragment = NULL, $absolute = TRUE) {
return url($path, array(
'fragment' => $fragment,
'absolute' => $absolute,
));
}