-
Notifications
You must be signed in to change notification settings - Fork 0
/
ckeditor.module
698 lines (641 loc) · 25 KB
/
ckeditor.module
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
<?php
/**
* CKEditor - The text editor for the Internet - http://ckeditor.com
* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses of your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* @file
* CKEditor Module for Drupal 7.x
*
* This module allows Drupal to replace textarea fields with CKEditor.
*
* CKEditor is an online rich text editor that can be embedded inside web pages.
* It is a WYSIWYG (What You See Is What You Get) editor which means that the
* text edited in it looks as similar as possible to the results end users will
* see after the document gets published. It brings to the Web popular editing
* features found in desktop word processors such as Microsoft Word and
* OpenOffice.org Writer. CKEditor is truly lightweight and does not require any
* kind of installation on the client computer.
*/
/**
* The name of the simplified toolbar that should be forced.
* Make sure that this toolbar is defined in ckeditor.config.js or fckconfig.js.
*/
define('CKEDITOR_FORCE_SIMPLE_TOOLBAR_NAME', 'DrupalBasic');
define('CKEDITOR_ENTERMODE_P', 1);
define('CKEDITOR_ENTERMODE_BR', 2);
define('CKEDITOR_ENTERMODE_DIV', 3);
define('CKEDITOR_LATEST', '4.14.0');
global $_ckeditor_configuration;
global $_ckeditor_ids;
module_load_include('inc', 'ckeditor', 'includes/ckeditor.user');
$_ckeditor_configuration = array();
$_ckeditor_ids = array();
/**
* Implements hook_hook_info().
*/
function ckeditor_hook_info() {
$hooks = array(
'ckeditor_plugin',
'ckeditor_plugin_alter',
'ckeditor_security_filter',
'ckeditor_security_filter_alter',
'ckeditor_settings_alter',
);
return array_fill_keys($hooks, array('group' => 'ckeditor'));
}
/**
* Implementation of hook_menu().
*/
function ckeditor_menu() {
$items = array();
$items['ckeditor/xss'] = array(
'title' => 'XSS Filter',
'description' => 'XSS Filter.',
'page callback' => 'ckeditor_filter_xss',
'file' => 'includes/ckeditor.page.inc',
'access callback' => TRUE,
'type' => MENU_CALLBACK,
);
$items['ckeditor/disable/wysiwyg/%'] = array(
'title' => 'Disable the WYSIWYG module',
'description' => 'Disable WYSIWYG module.',
'page callback' => 'ckeditor_disable_wysiwyg',
'page arguments' => array(3),
'file' => 'includes/ckeditor.admin.inc',
'access arguments' => array('administer ckeditor'),
'access callback' => TRUE,
'type' => MENU_CALLBACK,
);
$items['admin/config/content/ckeditor'] = array(
'title' => 'CKEditor',
'description' => 'Configure the rich text editor.',
'page callback' => 'ckeditor_admin_main',
'file' => 'includes/ckeditor.admin.inc',
'access arguments' => array('administer ckeditor'),
'type' => MENU_NORMAL_ITEM,
);
$items['admin/config/content/ckeditor/skinframe'] = array(
'title' => 'Change skin of CKEditor',
'description' => 'Configure skin for CKEditor.',
'page callback' => 'ckeditor_skinframe',
'file' => 'includes/ckeditor.admin.inc',
'access arguments' => array('administer ckeditor'),
'type' => MENU_CALLBACK,
);
$items['admin/config/content/ckeditor/add'] = array(
'title' => 'Add a new CKEditor profile',
'description' => 'Configure the rich text editor.',
'page callback' => 'drupal_get_form',
'page arguments' => array('ckeditor_admin_profile_form', 'add'),
'file' => 'includes/ckeditor.admin.inc',
'access arguments' => array('administer ckeditor'),
'type' => MENU_CALLBACK,
);
$items['admin/config/content/ckeditor/clone/%ckeditor_profile'] = array(
'title' => 'Clone the CKEditor profile',
'description' => 'Configure the rich text editor.',
'page callback' => 'drupal_get_form',
'page arguments' => array('ckeditor_admin_profile_clone_form', 'clone', 5),
'file' => 'includes/ckeditor.admin.inc',
'access arguments' => array('administer ckeditor'),
'type' => MENU_CALLBACK,
);
$items['admin/config/content/ckeditor/edit/%ckeditor_profile'] = array(
'title' => 'Edit the CKEditor profile',
'description' => 'Configure the rich text editor.',
'page callback' => 'drupal_get_form',
'page arguments' => array('ckeditor_admin_profile_form', 'edit', 5),
'file' => 'includes/ckeditor.admin.inc',
'access arguments' => array('administer ckeditor'),
'type' => MENU_CALLBACK,
);
$items['admin/config/content/ckeditor/delete/%ckeditor_profile'] = array(
'title' => 'Delete the CKEditor profile',
'description' => 'Configure the rich text editor.',
'page callback' => 'drupal_get_form',
'page arguments' => array('ckeditor_admin_profile_delete_form', 5),
'file' => 'includes/ckeditor.admin.inc',
'access arguments' => array('administer ckeditor'),
'type' => MENU_CALLBACK,
);
$items['admin/config/content/ckeditor/addg'] = array(
'title' => 'Add the CKEditor Global profile',
'description' => 'Configure the rich text editor.',
'page callback' => 'drupal_get_form',
'page arguments' => array('ckeditor_admin_global_profile_form', 'add'),
'file' => 'includes/ckeditor.admin.inc',
'access arguments' => array('administer ckeditor'),
'type' => MENU_CALLBACK,
);
$items['admin/config/content/ckeditor/editg'] = array(
'title' => 'Edit the CKEditor Global profile',
'description' => 'Configure the rich text editor.',
'page callback' => 'drupal_get_form',
'page arguments' => array('ckeditor_admin_global_profile_form', 'edit'),
'file' => 'includes/ckeditor.admin.inc',
'access arguments' => array('administer ckeditor'),
'type' => MENU_CALLBACK,
);
return $items;
}
/**
* Implementation of hook_permission().
*
* People -> Permissions
*/
function ckeditor_permission() {
$arr = array();
$arr['administer ckeditor'] = array(
'title' => t('Administer CKEditor access'),
'description' => t('Allow users to change CKEditor settings.')
);
$arr['customize ckeditor'] = array(
'title' => t('Customize CKEditor appearance'),
'description' => t('Allow users to customize CKEditor appearance.')
);
if (file_exists(ckfinder_path('local'))) {
$arr['allow CKFinder file uploads'] = array(
'title' => t('CKFinder access'),
'description' => t('Allow users to use CKFinder.')
);
}
return $arr;
}
/**
* Implementation of hook_help().
*
* This function delegates the execution to ckeditor_help_delegate() in includes/ckeditor.page.inc to
* lower the amount of code in ckeditor.module.
*/
function ckeditor_help($path, $arg) {
module_load_include('inc', 'ckeditor', 'includes/ckeditor.page');
return module_invoke('ckeditor', 'help_delegate', $path, $arg);
}
/**
* Check CKEditor version
*/
function ckeditor_get_version($main_version = FALSE) {
static $ckeditor_version = FALSE;
if ($ckeditor_version !== FALSE) {
if (!$main_version) {
return $ckeditor_version;
}
$version = explode('.', $ckeditor_version);
return trim($version[0]);
}
$editor_path = ckeditor_path('local', TRUE);
if ($editor_path == '<URL>') {
$url = ckeditor_path('url', TRUE);
$matches = array();
if (preg_match("|cdn.ckeditor.com/(\d(\.\d+)+.*)/|i", $url, $matches)) {
$ckeditor_version = $matches[1];
return $matches[1];
}
return $ckeditor_version = NULL;
}
$jspath = $editor_path . '/ckeditor.js';
$configcontents = @file_get_contents($jspath);
if (!$configcontents) {
return $ckeditor_version = NULL;
}
$matches = array();
if (preg_match('#,version:[\'\"]{1}(.*?)[\'\"]{1},#', $configcontents, $matches)) {
$ckeditor_version = $matches[1];
if ($ckeditor_version == '%VERSION%') {
$ckeditor_version = '4.0.0';
}
if (!$main_version) {
return $ckeditor_version;
}
$version = explode('.', $ckeditor_version);
return trim($version[0]);
}
return $ckeditor_version = NULL;
}
/**
* Implements hook_page_build().
*/
function ckeditor_page_build(&$page) {
// Add our CSS file that adds common needed classes, such as align-left,
// align-right, underline, indent, etc.
$page['page_bottom']['ckeditor']['#attached']['css'] = array(
drupal_get_path('module', 'ckeditor') . '/css/ckeditor.css' => array(
'every_page' => TRUE,
),
);
}
/**
* Implements hook_form_FORM_ID_alter() for user_profile_form().
*/
function ckeditor_form_user_profile_form_alter(&$form, &$form_state) {
if ($form['#user_category'] == 'account') {
ckeditor_user_customize($form, $form_state, 'user_profile_form');
}
}
/**
* Implementation of hook_element_info_alter().
*
* Replace the textarea with CKEditor using a callback function (ckeditor_pre_render_text_format).
*/
function ckeditor_element_info_alter(&$types) {
$types['text_format']['#pre_render'][] = 'ckeditor_pre_render_text_format';
}
/**
* This function creates the HTML objects required for CKEditor.
*
* @param $element
* A fully populated form element to add the editor to.
* @return
* The same $element with extra CKEditor markup and initialization.
*/
function ckeditor_pre_render_text_format($element) {
static $init = FALSE;
if (!isset($element['#format'])) {
return $element;
}
module_load_include('inc', 'ckeditor', 'includes/ckeditor.lib');
if ($init === FALSE) {
$input_formats = ckeditor_profiles_compile();
drupal_add_js(array('ckeditor' => array('input_formats' => $input_formats, 'plugins' => array())), 'setting');
$init = TRUE;
}
if (isset($element['value'])) {
if (!isset($element['format'])) {
return $element;
}
if (isset($element['summary'])) {
$element['value'] = ckeditor_load_by_field($element['value'], $element['format']['format'], TRUE, $element['summary']['#id']);
$element['summary'] = ckeditor_load_by_field($element['summary'], $element['format']['format'], FALSE);
}
else {
$element['value'] = ckeditor_load_by_field($element['value'], $element['format']['format']);
}
}
else {
$element = ckeditor_load_by_field($element, $element['#format']);
}
return $element;
}
/**
* Load all profiles. Just load one profile if $name is passed in.
*/
function ckeditor_profile_load($name = '', $clear = FALSE, $check_access = TRUE) {
static $profiles = array();
global $user;
if (empty($profiles) || $clear === TRUE) {
$result = db_select('ckeditor_settings', 's')->fields('s')->execute();
foreach ($result as $data) {
$data->settings = unserialize($data->settings);
$data->input_formats = array();
$profiles[$data->name] = $data;
}
if ($check_access === FALSE) {
// don't check if user has access to filter formats, needed for exporting as feature with drush
$input_formats = filter_formats();
} else {
$input_formats = filter_formats($user);
}
$result = db_select('ckeditor_input_format', 'f')->fields('f')->execute();
foreach ($result as $data) {
if (isset($input_formats[$data->format])) {
$profiles[$data->name]->input_formats[$data->format] = $input_formats[$data->format]->name;
}
}
}
return ($name ? (isset($profiles[urldecode($name)]) ? $profiles[urldecode($name)] : FALSE) : $profiles);
}
/**
* Generate base path of the Drupal installation.
*
* @return
* Path of the Drupal installation.
*/
function ckeditor_base_path($mode = 'relative') {
if ($mode == 'local') {
return $cke_base_local_path = '.';
}
return rtrim(base_path(), '/');
}
/**
* Generate module path of the CKEditor module.
*
* @return
* Path of CKEditor module.
*/
function ckeditor_module_path($mode = 'relative') {
switch ($mode) {
default:
case 'relative':
return ckeditor_base_path('relative') . '/' . drupal_get_path('module', 'ckeditor');
case 'local':
return ckeditor_base_path('local') . '/' . drupal_get_path('module', 'ckeditor');
case 'url':
return drupal_get_path('module', 'ckeditor');
}
}
/**
* Generate library path of the Drupal installation.
*
* @return
* Path of library in the Drupal installation.
*/
function ckeditor_library_path($mode = 'relative') {
$lib_path = 'sites/all/libraries';
if (function_exists('libraries_get_path')) {
$path = libraries_get_path('ckeditor');
if ($path !== FALSE) {
$lib_path = drupal_substr($path, 0, strlen($path) - 9);
}
}
switch ($mode) {
default:
case 'relative':
return ckeditor_base_path('relative') . '/' . $lib_path;
case 'local':
return ckeditor_base_path('local') . '/' . $lib_path;
case 'url':
return $lib_path;
}
}
/**
* Read the CKEditor path from the Global profile.
*
* @return
* Path to CKEditor folder.
*/
function ckeditor_path($mode = 'relative', $refresh = FALSE) {
static $cke_static;
if (!isset($cke_static)) {
$cke_static = array();
}
if ($refresh || !isset($cke_static[$mode])) {
$global_profile = ckeditor_profile_load('CKEditor Global Profile', $refresh);
switch ($mode) {
default:
case 'relative':
if ($global_profile && isset($global_profile->settings['ckeditor_path'])) {
// http:// OR https:// OR //
if (preg_match("|^(http(s)?:)?//|i", $global_profile->settings['ckeditor_path'])) {
return '<URL>';
}
$cke_path = $global_profile->settings['ckeditor_path'];
$cke_path = strtr($cke_path, array("%b" => ckeditor_base_path('relative'), "%m" => ckeditor_module_path('relative'), "%l" => ckeditor_library_path('relative')));
$cke_path = str_replace('\\', '/', $cke_path);
$cke_path = str_replace('//', '/', $cke_path);
return $cke_static[$mode] = $cke_path;
}
return $cke_static[$mode] = ckeditor_module_path('relative') . '/ckeditor';
case 'local':
if ($global_profile) {
if (!empty($global_profile->settings['ckeditor_local_path'])) {
return $cke_static[$mode] = $global_profile->settings['ckeditor_local_path'];
}
if (isset($global_profile->settings['ckeditor_path'])) {
// http:// OR https:// OR //
if (preg_match("|^(http(s)?:)?//|i", $global_profile->settings['ckeditor_path'])) {
return '<URL>';
}
$cke_local_path = $global_profile->settings['ckeditor_path'];
$cke_local_path = strtr($cke_local_path, array("%b" => ckeditor_base_path('local'), "%m" => ckeditor_module_path('local'), "%l" => ckeditor_library_path('local')));
return $cke_static[$mode] = $cke_local_path;
}
}
return $cke_static[$mode] = ckeditor_module_path('local') . '/ckeditor';
case 'url':
if ($global_profile && isset($global_profile->settings['ckeditor_path'])) {
// http:// OR https:// OR //
if (preg_match("|^(http(s)?:)?//|i", $global_profile->settings['ckeditor_path'])) {
$cke_path = $global_profile->settings['ckeditor_path'];
}
else {
$cke_path = $global_profile->settings['ckeditor_path'];
$cke_path = strtr($cke_path, array("%m" => ckeditor_module_path('url'), "%l" => ckeditor_library_path('url')));
$cke_path = str_replace('\\', '/', $cke_path);
$cke_path = str_replace('//', '/', $cke_path);
//In D7 base path in URL mode is not needed, so we need to remove it with trailing slash (if exists)
$cke_path = str_replace(array("%b/", "%b"), '', $cke_path);
}
return $cke_static[$mode] = $cke_path;
}
return $cke_static[$mode] = ckeditor_module_path('url') . '/ckeditor';
}
}
return $cke_static[$mode];
}
/**
* Read the CKEditor plugins path from the Global profile.
*
* @return
* Path to CKEditor plugins folder.
*/
function ckeditor_plugins_path($mode = 'relative', $refresh = FALSE) {
static $cke_static;
if (!isset($cke_static)) {
$cke_static = array();
}
if ($refresh || !isset($cke_static[$mode])) {
$global_profile = ckeditor_profile_load('CKEditor Global Profile', $refresh);
switch ($mode) {
default:
case 'relative':
if ($global_profile && isset($global_profile->settings['ckeditor_plugins_path'])) {
$cke_plugins_path = $global_profile->settings['ckeditor_plugins_path'];
$cke_plugins_path = strtr($cke_plugins_path, array("%b" => ckeditor_base_path('relative'), "%m" => ckeditor_module_path('relative'), "%l" => ckeditor_library_path('relative')));
$cke_plugins_path = str_replace('\\', '/', $cke_plugins_path);
$cke_plugins_path = str_replace('//', '/', $cke_plugins_path);
$cke_plugins_path = rtrim($cke_plugins_path, ' \/');
return $cke_static[$mode] = $cke_plugins_path;
}
return $cke_static[$mode] = ckeditor_module_path('relative') . '/plugins';
case 'local':
if ($global_profile) {
if (!empty($global_profile->settings['ckeditor_plugins_local_path'])) {
return $cke_static[$mode] = $global_profile->settings['ckeditor_plugins_local_path'];
}
if (isset($global_profile->settings['ckeditor_plugins_path'])) {
$cke_plugins_local_path = $global_profile->settings['ckeditor_plugins_path'];
$cke_plugins_local_path = strtr($cke_plugins_local_path, array("%b" => ckeditor_base_path('local'), "%m" => ckeditor_module_path('local'), "%l" => ckeditor_library_path('local')));
return $cke_static[$mode] = $cke_plugins_local_path;
}
}
return $cke_static[$mode] = ckeditor_module_path('local') . '/plugins';
case 'url':
if ($global_profile && isset($global_profile->settings['ckeditor_plugins_path'])) {
$cke_plugins_path = $global_profile->settings['ckeditor_plugins_path'];
$cke_plugins_path = strtr($cke_plugins_path, array("%m" => ckeditor_module_path('url'), "%l" => ckeditor_library_path('url')));
$cke_plugins_path = str_replace('\\', '/', $cke_plugins_path);
$cke_plugins_path = str_replace('//', '/', $cke_plugins_path);
$cke_plugins_path = rtrim($cke_plugins_path, ' \/');
//In D7 base path in URL mode is not needed, so we need to remove it with trailing slash (if exists)
$cke_plugins_path = str_replace(array("%b/", "%b"), '', $cke_plugins_path);
return $cke_static[$mode] = $cke_plugins_path;
}
return $cke_static[$mode] = ckeditor_module_path('url') . '/plugins';
}
}
return $cke_static[$mode];
}
/**
* Read the CKFinder path from the Global profile.
*
* @return
* Path to CKFinder folder.
*/
function ckfinder_path($mode = 'relative', $refresh = FALSE) {
static $cke_static;
if (!isset($cke_static)) {
$cke_static = array();
}
if ($refresh || !isset($cke_static[$mode])) {
$global_profile = ckeditor_profile_load('CKEditor Global Profile', $refresh);
switch ($mode) {
default:
case 'relative':
if ($global_profile && isset($global_profile->settings['ckfinder_path'])) {
$ckfinder_path = $global_profile->settings['ckfinder_path'];
$ckfinder_path = strtr($ckfinder_path, array("%b" => ckeditor_base_path('relative'), "%m" => ckeditor_module_path('relative'), "%l" => ckeditor_library_path('relative')));
$ckfinder_path = str_replace('\\', '/', $ckfinder_path);
$ckfinder_path = str_replace('//', '/', $ckfinder_path);
return $cke_static[$mode] = $ckfinder_path;
}
return $cke_static[$mode] = ckeditor_module_path('relative') . '/ckfinder';
case 'local':
if ($global_profile) {
if (!empty($global_profile->settings['ckfinder_local_path'])) {
return $cke_static[$mode] = $global_profile->settings['ckfinder_local_path'];
}
if (isset($global_profile->settings['ckfinder_path'])) {
$ckfinder_path = $global_profile->settings['ckfinder_path'];
$ckfinder_path = strtr($ckfinder_path, array("%b" => ckeditor_base_path('local'), "%m" => ckeditor_module_path('local'), "%l" => ckeditor_library_path('local')));
return $cke_static[$mode] = $ckfinder_path;
}
}
return $cke_static[$mode] = ckeditor_module_path('local') . '/ckfinder';
case 'url':
if ($global_profile && isset($global_profile->settings['ckfinder_path'])) {
$ckfinder_path = $global_profile->settings['ckfinder_path'];
$ckfinder_path = strtr($ckfinder_path, array("%m" => ckeditor_module_path('url'), "%l" => ckeditor_library_path('url')));
$ckfinder_path = str_replace('\\', '/', $cke_plugins_path);
$ckfinder_path = str_replace('//', '/', $cke_plugins_path);
//In D7 base path in URL mode is not needed, so we need to remove it with trailing slash (if exists)
$ckfinder_path = str_replace(array("%b/", "%b"), '', $ckfinder_path);
return $cke_static[$mode] = $ckfinder_path;
}
return $cke_static[$mode] = ckeditor_module_path('url') . '/ckfinder';
}
}
return $cke_static[$mode];
}
/**
* Implementation of hook_features_api().
*
* Allow exporting of CKEditor profiles by the Features module.
*/
function ckeditor_features_api() {
return array(
'ckeditor_profile' => array(
'name' => t('CKEditor profiles'),
'feature_source' => TRUE,
'default_hook' => 'ckeditor_profile_defaults',
'default_file' => FEATURES_DEFAULTS_INCLUDED,
'file' => drupal_get_path('module', 'ckeditor') . '/includes/ckeditor.features.inc',
)
);
}
/**
* Implementation of hook_file_download().
* Support for private downloads.
* CKEditor does not implement any kind of potection on private files.
*/
function ckeditor_file_download($uri) {
$result = db_query("SELECT f.* FROM {file_managed} f WHERE uri = :uri", array(':uri' => $uri));
foreach ($result as $record) {
return NULL;
}
if ($path = file_create_url($uri)) {
//No info in DB? Probably a file uploaded with FCKeditor / CKFinder
$global_profile = ckeditor_profile_load("CKEditor Global Profile");
//Assume that files inside of ckeditor directory belong to the CKEditor. If private directory is set, let the decision about protection to the user.
$private_dir_db = $private_dir = isset($global_profile->settings['private_dir']) ? trim($global_profile->settings['private_dir'], '\/') : '';
$private_dir_db = str_replace(array('\\%u', '\\%n'), array('', ''), $private_dir_db);
$private_dir = preg_quote($private_dir, '#');
$private_dir = strtr($private_dir, array('%u' => '(\d+)', '%n' => '([\x80-\xF7 \w@.-]+)')); // regex for %n taken from user_validate_name() in user.module
$private_dir = trim($private_dir, '\/');
$regex = '#^' . preg_quote('private://', '#') . $private_dir . '#';
if (!strstr($uri, 'private://') && !strstr($uri, 'public://')) {
$path = 'private://' . $uri;
}
else {
$path = $uri;
}
//check if CKEditor's "Enable access to files located in the private folder" option is disabled or enabled
$allow_download_private_files = FALSE;
if (isset($global_profile->settings['ckeditor_allow_download_private_files']) && $global_profile->settings['ckeditor_allow_download_private_files'] === 't') {
$allow_download_private_files = TRUE;
}
//denied access to file if private upload is set and CKEditor's "Enable access to files located in the private folder" option is disabled
if ($allow_download_private_files == FALSE)
return NULL;
//check if file can be served by comparing regex and path to file
if (preg_match($regex, $path)) {
$info = image_get_info($uri);
return array('Content-Type' => $info['mime_type']);
}
}
}
/**
* Implementation of hook_modules_uninstalled().
*
* Remove enabled plugins in CKEditor profiles added by uninstalled modules.
*/
function ckeditor_modules_uninstalled($modules) {
module_load_include('inc', 'ckeditor', 'includes/ckeditor.lib');
$profiles_list = ckeditor_profile_input_formats();
$plugins_list = ckeditor_load_plugins();
foreach ($profiles_list as $_profile => $_inputs) {
$changed = FALSE;
$profile = ckeditor_profile_load($_profile);
if (!isset($profile->settings['loadPlugins'])) continue;
foreach (array_keys((array) $profile->settings['loadPlugins']) as $plugin_name) {
if (!array_key_exists($plugin_name, $plugins_list)) {
unset($profile->settings['loadPlugins'][$plugin_name]);
$changed = TRUE;
}
}
if ($changed) {
db_update('ckeditor_settings')
->fields(array(
'settings' => serialize($profile->settings)
))
->condition('name', $profile->name, '=')
->execute();
}
}
}
/**
* Implements hook_field_extra_fields().
*/
function ckeditor_field_extra_fields() {
$fields['user']['user']['form']['ckeditor'] = array(
'label' => t('Rich text editor settings'),
'description' => t('Rich text editor settings'),
'weight' => 10,
);
return $fields;
}