You are here

function theme_content_profile_pageroute_empty in Content Profile 6

theme_content_profile_pageroute_empty generates a message, if there is no content profile for the user.

1 theme call to theme_content_profile_pageroute_empty()
ContentProfilePageViewProfile::getForm in ./content_profile.pageroute.inc

File

./content_profile.pageroute.inc, line 14

Code

function theme_content_profile_pageroute_empty($type_name) {
  return '<div class="content-profile-empty">' . t('You have not created a @type yet. Go ahead and create one!', array(
    '@type' => $type_name,
  )) . '</div>';
}