function content_profile_get_edit_path in Content Profile 6
Gets the edit path for a content_profile
2 calls to content_profile_get_edit_path()
- theme_content_profile_display_link in ./
content_profile.theme.inc - Theme function for the content_profile display as link
- theme_content_profile_display_tab_edit in ./
content_profile.theme.inc - Themes the edit tab
File
- ./
content_profile.theme.inc, line 101 - Theme and template preprocessing code
Code
function content_profile_get_edit_path($node) {
$handler = variable_get('content_profile_path_handler', 'content_profile_default_path_handler');
return $handler('edit', $node, $node->uid);
}