| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 | <?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(      'default' => 1,      'user_choose' => 0,      'show_toggle' => 1,      '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,          'formatselect' => 1,          'cut' => 1,          'copy' => 1,          'paste' => 1,        ),        'advimage' => array(          'advimage' => 1,        ),        'advlink' => array(          'advlink' => 1,        ),        'fullscreen' => array(          'fullscreen' => 1,        ),        'paste' => array(          'pastetext' => 1,        ),        'searchreplace' => array(          'search' => 1,          'replace' => 1,        ),        'advlist' => array(          'advlist' => 1,        ),        'wordcount' => array(          'wordcount' => 1,        ),        'imce' => array(          'imce' => 1,        ),        'drupal' => array(          'break' => 1,        ),      ),      'toolbar_loc' => 'top',      'toolbar_align' => 'left',      'path_loc' => 'bottom',      'resizing' => 1,      'verify_html' => 1,      'preformatted' => 0,      'convert_fonts_to_spans' => 1,      'remove_linebreaks' => 1,      'apply_source_formatting' => 0,      'paste_auto_cleanup_on_paste' => 1,      'block_formats' => 'p,h3,h4',      'css_setting' => 'self',      'css_path' => '/sites/all/themes/gui/jee/css/wysiwyg.css',      'css_classes' => 'habillage gauche=floatlefthabillage droite=floatright',      'buttonorder' => 'fullscreen,separator,bold,italic,underline,separator,separator,bullist,numlist,advlist,separator,link,advlink,unlink,separator,image,separator,cut,copy,paste,pastetext,search,replace,wordcount,separator,undo,redo,separator,break,formatselect,imce,advimage',    ),  );  return $profiles;}
 |