function editor_editor_profiles in Editor 5
Same name and namespace in other branches
- 6 editor.profiles.inc \editor_editor_profiles()
Default editor profiles.
File
- ./
editor.profiles.inc, line 13 - Provides default profiles. @author Tj Holowaychuk <http://www.350designs.com/> @package Editor
Code
function editor_editor_profiles() {
$profiles = array();
// Small
$profile_string = 'bold italic | align_left align_center align_right | link mailto image ';
$profiles[] = editor_profile_create('small', t('Small'), $profile_string, t('Limits to basic plugins.'));
// Large
$profile_string = 'bold italic list_numeric list_bullet | align_left align_center align_right align_justify | table link mailto image code | undo redo remove_format html';
$profiles[] = editor_profile_create('large', t('Large'), $profile_string, t('All core plugins.'));
return $profiles;
}