You are here

function content_profile_get_add_path in Content Profile 6

Gets the add path for a content_profile of the active user

1 call to content_profile_get_add_path()
theme_content_profile_display_add_link in ./content_profile.theme.inc
Themes the add link.

File

./content_profile.theme.inc, line 109
Theme and template preprocessing code

Code

function content_profile_get_add_path($type, $uid) {
  $handler = variable_get('content_profile_path_handler', 'content_profile_default_path_handler');
  return $handler('add', $type, $uid);
}