You are here

function wysiwyg_admin_profile_title in Wysiwyg 7.2

Same name and namespace in other branches
  1. 6.2 wysiwyg.module \wysiwyg_admin_profile_title()

Display an editor profile title.

Parameters

$profile: An editor profile object.

Return value

The unfiltered name of an editor profile. Currently the same as the text format name.

1 string reference to 'wysiwyg_admin_profile_title'
wysiwyg_menu in ./wysiwyg.module
Implementation of hook_menu().

File

./wysiwyg.module, line 137

Code

function wysiwyg_admin_profile_title($profile) {
  $format = filter_format_load($profile->format);
  return $format->name;
}