Drupal 7 + Ckeditor 4.4 + SyntaxHighLight 1.7 = подсветка синтаксиса

1) Устанавливаем модуль CKeditor и в пути к библиотеки указываем - //cdn.ckeditor.com/4.4.0/full-all

2) Устанавливаем модуль Syntax Highlighter и включаем его.

2) Скачиваем плагин Syntaxhighlighter Interface и копируем в папку /sites/all/modules/ckeditor/plugins/syntaxhighlight. Так, чтобы в данной директории оказался файл plugin.js.

3) Открываем /sites/all/modules/ckeditor/plugins/syntaxhighlight/plugin.js и заменяем:

editor.ui.addButton && editor.ui.addButton( 'Syntaxhighlight',
	{
		label : editor.lang.syntaxhighlight.title,
		command : 'syntaxhighlightDialog',
		toolbar : 'insert,98'
	} );

на:

editor.ui.addButton && editor.ui.addButton( 'Syntaxhighlight',
	{
		label : editor.lang.syntaxhighlight.title,
		command : 'syntaxhighlightDialog',
		icon: this.path+"icons/syntaxhighlight.png"
	} );

4) После чего заходим в Drupal в настройки CKeditor и включаем плагин:

5) Перемещаем кнопку на тулбаре в нужное нам место и наслаждаемся!