Ckeditor Wordcount插件可定位特定字段

时间:2019-11-25 18:22:29

标签: javascript php drupal-7 ckeditor ckeditor-wordcount

我正在使用CKEditor-WYSIWYG HTML编辑器Drupal 7模块和wordcount插件。我已经在ckeditor plugins目录中添加了wordcount插件文件并使其正常工作,但是我的config max单词和字符数等对于所有字段都是相同的。我想为特定字段指定不同的最大单词和字符数。这是我的配置:

ckeditor.config.js

使用CKEDITOR.replace,我执行了以下操作:

  CKEDITOR.replace('edit-body-und-0-summary',
      {
          extraPlugins: 'wordcount',
          wordcount: {
              showCharCount: true,
              maxCharCount: 123
          }
      });

这有效,但是刷新页面后,它又返回到全局最大单词和字符数。 Textrea ID为edit-body-und-0-summary,但此标记在页面的其他位置重复。

我该如何向textarea标签添加唯一ID,并针对不同的字段使用不同的字数,例如 Summary and Body fields

1 个答案:

答案 0 :(得分:0)

我想通了,希望对其他人有帮助。

我在Adminimal Sub主题中添加了以下内容,以将类添加到摘要文本区域:

function adminimal_sub_form_alter(&$form, &$form_state, $form_id) { 
 if (isset($form['#node']) && $form['#node']->type == 'article') {
 // Add class to body textarea for various content types. This is used for the Ckeditor wordcount plugin to target summary textarea. 
   $form['body']['und']['0']['summary']['#attributes']['class']['0'] = 'article-summary';
 }
}

然后下载Ckeditor 4 Wordcount插件并将其保存在插件目录(sites / all / libraries / ckeditor / plugins)中。

在Drupal UI中,我转到配置> CKEditor过滤的HTML(编辑),并在“高级”选项下的“自定义Javascript”配置中,向ckeditor.config.js添加了路径(config.customConfig ='/ sites / all / themes /global/js/ckeditor.config.js';)。

这是我的ckeditor.config.js:

CKEDITOR.editorConfig = function(config) {

 if (this.element.hasClass('article-summary')) {
 config.wordcount = {
    showCharCount: true,
    maxCharCount: 170
    }
}
// Make CKEditor's edit area as high as the textarea would be.
 if (this.element.$.rows > 0) {
    config.height = this.element.$.rows * 20 + 'px';
 }
}

在这里,我可以设置maxwordcount并加载更多内容,但是对于此项目,只需要maxwordcount。这样,如果Drupal Ckeditor模块得到更新,此文件将不会受到影响。