You are here

function content_profile_content_profile_settings in Content Profile 6

Implementation of hook_content_profile_settings().

Defines content profile settings and their default value.

File

./content_profile.module, line 452

Code

function content_profile_content_profile_settings() {
  return array(
    'weight' => 0,
    'user_display' => 'full',
    'edit_link' => 0,
    'edit_tab' => 'sub',
    'add_link' => 1,
  );
}