You are here

function social_content_page_title in Social Content 7

Title callback: Returns the full title for a social content type.

Parameters

object $social_content_type: The social content type object.

Return value

string An unsanitized string that from the title of the social content type.

See also

social_content_menu()

1 string reference to 'social_content_page_title'
social_content_menu in ./social_content.module
Implements hook_menu().

File

./social_content.module, line 83
Social Content module.

Code

function social_content_page_title($social_content_type) {
  return $social_content_type['title'];
}