| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 | <?php/** * @file * admin.features.wysiwyg.inc *//** * Implements hook_wysiwyg_default_profiles(). */function admin_wysiwyg_default_profiles() {  $profiles = array();  // Exported profile: filtred_html  $profiles['filtred_html'] = array(    'format' => 'filtred_html',    'editor' => 'tinymce',    'settings' => array(      'theme' => 'advanced',      'language' => 'en',      'buttons' => array(        'default' => array(          'bold' => 1,          'italic' => 1,          'underline' => 1,          'bullist' => 1,          'numlist' => 1,          'undo' => 1,          'redo' => 1,          'link' => 1,          'unlink' => 1,          'image' => 1,          'cut' => 1,          'copy' => 1,          'paste' => 1,          'formatselect' => 1,        ),        'advimage' => array(          'advimage' => 1,        ),        'advlink' => array(          'advlink' => 1,        ),        'font' => array(),        'fullscreen' => array(          'fullscreen' => 1,        ),        'paste' => array(          'pastetext' => 1,        ),        'searchreplace' => array(          'search' => 1,          'replace' => 1,        ),        'advlist' => array(          'advlist' => 1,        ),        'wordcount' => array(          'wordcount' => 1,        ),        'video_filter' => array(          'video_filter' => 1,        ),        'drupal' => array(          'break' => 1,        ),      ),      'verify_html' => 1,      'preformatted' => 0,      'convert_fonts_to_spans' => 1,      'remove_linebreaks' => 1,      'apply_source_formatting' => 0,      'paste_auto_cleanup_on_paste' => 1,      'css_setting' => 'theme',      'css_path' => '',      'buttonorder' => 'fullscreen,separator,bold,italic,underline,separator,formatselect,separator,bullist,numlist,advlist,separator,link,advlink,unlink,separator,image,advimage,video_filter,separator,cut,copy,paste,pastetext,search,replace,wordcount,separator,undo,redo,separator,break',      'theme_advanced_statusbar_location' => 'bottom',      'theme_advanced_toolbar_location' => 'top',      'theme_advanced_toolbar_align' => 'left',      'theme_advanced_blockformats' => 'h2,h3,h4,h5,h6',      'theme_advanced_styles' => '',      'theme_advanced_resizing' => 1,    ),    'preferences' => array(      'add_to_summaries' => NULL,      'default' => 1,      'show_toggle' => 1,      'user_choose' => 0,      'version' => '3.5.7',    ),    'name' => 'formatfiltred_html',  );  return $profiles;}
 |