function wysiwyg_admin_profile_title in Wysiwyg 6.2
Same name and namespace in other branches
- 7.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 input format name.
1 string reference to 'wysiwyg_admin_profile_title'
- wysiwyg_menu in ./
wysiwyg.module - Implementation of hook_menu().
File
- ./
wysiwyg.module, line 75 - Integrates client-side editors with Drupal.
Code
function wysiwyg_admin_profile_title($profile) {
$format = filter_format_load($profile->format);
return $format->name;
}