You are here

function theme_commons_profile_image_action_links_block in Drupal Commons 6.2

Render the content for the profile image and action links block

Parameters

$picture: The user picture

$links: An array of action links

$account: The user being viewed

1 theme call to theme_commons_profile_image_action_links_block()
_commons_profile_image_links_block_view in modules/features/commons_profile/commons_profile.blocks.inc
Generate the profile image and action links block

File

modules/features/commons_profile/commons_profile.theme.inc, line 18
Theme callbacks for commons_profile

Code

function theme_commons_profile_image_action_links_block($picture, $links, $account) {
  $content = '';

  // Add the picture
  $content .= $picture;

  // Add the links
  $content .= theme('links', $links);
  return $content;
}