Drupal 7 WYSIWYG模块,带有最新的ckeditor字体更改

时间:2015-01-25 03:01:32

标签: drupal-7 ckeditor drupal-modules wysiwyg

我想更改默认" Timesnewroman"字体到" Verdana" /别的。我在config.js中尝试了config.font_styleconfig.font_names,但它没有用。是否有任何变通方法可以更改此设置。

注意:我通过Drupal 7 WYSIWYG模块使用ckeditor插件。

1 个答案:

答案 0 :(得分:0)

您可以在template.php文件中使用hook

function THEMENAME_wysiwyg_editor_settings_alter(&$settings, $context) {
    if ($context['profile']->editor == 'ckeditor') {
        $settings['font_names'] = 'Arial/Arial, Helvetica, sans-serif; Times New Roman/Times New Roman, Times, serif;Verdana';
        $settings['font_defaultLabel'] = 'Verdana';
    }
}

您还可以为CKEditor添加其他设置