2017-05-05 9 views
-2

マイCKEditorバージョンのconfiq.jsをCKEditorバージョンするユーチューブプラグインを追加する方法:次のように

CKEDITOR.editorConfig = function(config) { 
     config.toolbarGroups = [ 
      { name: 'clipboard', groups: [ 'clipboard', 'undo' ] }, 
      { name: 'editing',  groups: [ 'find', 'selection', 'spellchecker' ] }, 
      { name: 'links' }, 
      { name: 'insert' }, 
      { name: 'forms' }, 
      { name: 'tools' }, 
      { name: 'document', groups: [ 'mode', 'document', 'doctools' ] }, 
      { name: 'others' }, 
      '/', 
      { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] }, 
      { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] }, 
      { name: 'styles' }, 
      { name: 'colors' }, 
      { name: 'about' } 
     ]; 
     config.extraPlugins = 'imageuploader'; 
     config.removeButtons = 'Underline,Subscript,Superscript'; 
     config.format_tags = 'p;h1;h2;h3;pre'; 
     config.removeDialogTabs = 'image:advanced;link:advanced'; 
     }; 

私はユーチューブのURLを追加したいとgetユーチューブは私

+0

RTFMしてください。あなたは何をしようとする必要があります – Akintunde007

+0

何兄弟。私はPHPの初心者です。これは私のAccadamicプロジェクトのためのものです。私は開発者ではありません。@ Akin –

答えて

0
を助けるvedio.please

次の手順に従います。

  1. YouTubeプラグインを圧縮形式でダウンロードします。
  2. ダウンロードしたファイルをCKEditorのpluginsフォルダに解凍します。
  3. Addconfig.extraPlugins = 'youtube';あなたの設定(config.js)で。このよう

confiq.jsコード:

CKEDITOR.editorConfig = function(config) { 
     config.toolbarGroups = [ 
      { name: 'clipboard', groups: [ 'clipboard', 'undo' ] }, 
      { name: 'editing',  groups: [ 'find', 'selection', 'spellchecker' ] }, 
      { name: 'links' }, 
      { name: 'insert' }, 
      { name: 'forms' }, 
      { name: 'tools' }, 
      { name: 'document', groups: [ 'mode', 'document', 'doctools' ] }, 
      { name: 'others' }, 
      '/', 
      { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] }, 
      { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] }, 
      { name: 'styles' }, 
      { name: 'colors' }, 
      { name: 'about' } 
     ]; 
     config.extraPlugins = 'imageuploader'; 
     config.removeButtons = 'Underline,Subscript,Superscript'; 
     config.format_tags = 'p;h1;h2;h3;pre'; 
     config.removeDialogTabs = 'image:advanced;link:advanced'; 
     config.extraPlugins = 'youtube'; 
     config.youtube_width = '640'; 
     config.youtube_height = '480'; 
     config.youtube_responsive = true; 
     config.youtube_older = false; 
     config.youtube_related = true; 
     config.youtube_autoplay = false; 
     config.youtube_controls = true; 
     config.youtube_privacy = false; 

     }; 

uが取得するコードを実行します。 ckeditor official

+0

非常にシンプルで非常に明確にhttp://ckeditor.com/addon/youtubeで与えられています。 –

+0

はいそれは働いた.thanku –