Completed
Pull Request — master (#1844)
by Christian
09:38
created
drupal/sites/default/boinc/modules/contrib/wysiwyg/editors/ckeditor.inc 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
  *   An array containing editor properties as returned from hook_editor().
56 56
  *
57 57
  * @return
58
- *   The installed editor version.
58
+ null|string   The installed editor version.
59 59
  */
60 60
 function wysiwyg_ckeditor_version($editor) {
61 61
   $library = $editor['library path'] . '/ckeditor.js';
Please login to merge, or discard this patch.
drupal/sites/default/boinc/modules/contrib/wysiwyg/editors/fckeditor.inc 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
  *   An array containing editor properties as returned from hook_editor().
48 48
  *
49 49
  * @return
50
- *   The installed editor version.
50
+ null|string   The installed editor version.
51 51
  */
52 52
 function wysiwyg_fckeditor_version($editor) {
53 53
   $library = $editor['library path'] . '/fckeditor.js';
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
  *   A wysiwyg editor profile.
76 76
  *
77 77
  * @return
78
- *   An array of theme names. The first returned name should be the default
78
+ string[]   An array of theme names. The first returned name should be the default
79 79
  *   theme name.
80 80
  */
81 81
 function wysiwyg_fckeditor_themes($editor, $profile) {
Please login to merge, or discard this patch.
drupal/sites/default/boinc/modules/contrib/wysiwyg/editors/jwysiwyg.inc 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
  *   An array containing editor properties as returned from hook_editor().
44 44
  *
45 45
  * @return
46
- *   The installed editor version.
46
+ null|string   The installed editor version.
47 47
  */
48 48
 function wysiwyg_jwysiwyg_version($editor) {
49 49
   $script = $editor['library path'] . '/jquery.wysiwyg.js';
Please login to merge, or discard this patch.
drupal/sites/default/boinc/modules/contrib/wysiwyg/editors/markitup.inc 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
  *   An array containing editor properties as returned from hook_editor().
45 45
  *
46 46
  * @return
47
- *   The installed editor version.
47
+ null|string   The installed editor version.
48 48
  */
49 49
 function wysiwyg_markitup_version($editor) {
50 50
   // Changelog was in markitup/markitup/readme.txt <= 1.1.5.
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
  *   A wysiwyg editor profile.
75 75
  *
76 76
  * @return
77
- *   An array of theme names. The first returned name should be the default
77
+ string[]   An array of theme names. The first returned name should be the default
78 78
  *   theme name.
79 79
  */
80 80
 function wysiwyg_markitup_themes($editor, $profile) {
Please login to merge, or discard this patch.
drupal/sites/default/boinc/modules/contrib/wysiwyg/editors/nicedit.inc 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
  *   An array containing editor properties as returned from hook_editor().
39 39
  *
40 40
  * @return
41
- *   The installed editor version.
41
+ string   The installed editor version.
42 42
  */
43 43
 function wysiwyg_nicedit_version($editor) {
44 44
   // @see http://nicedit.com/forums/viewtopic.php?t=425
Please login to merge, or discard this patch.
drupal/sites/default/boinc/modules/contrib/wysiwyg/editors/openwysiwyg.inc 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
  *   An array containing editor properties as returned from hook_editor().
42 42
  *
43 43
  * @return
44
- *   The installed editor version.
44
+ null|string   The installed editor version.
45 45
  */
46 46
 function wysiwyg_openwysiwyg_version($editor) {
47 47
   // 'library path' has '/scripts' appended already.
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
  *   A wysiwyg editor profile.
68 68
  *
69 69
  * @return
70
- *   An array of theme names. The first returned name should be the default
70
+ string[]   An array of theme names. The first returned name should be the default
71 71
  *   theme name.
72 72
  */
73 73
 function wysiwyg_openwysiwyg_themes($editor, $profile) {
Please login to merge, or discard this patch.
drupal/sites/default/boinc/modules/contrib/wysiwyg/editors/tinymce.inc 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
  *   An array containing editor properties as returned from hook_editor().
78 78
  *
79 79
  * @return
80
- *   The installed editor version.
80
+ null|string   The installed editor version.
81 81
  */
82 82
 function wysiwyg_tinymce_version($editor) {
83 83
   $script = $editor['library path'] . '/tiny_mce.js';
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
  *   A wysiwyg editor profile.
105 105
  *
106 106
  * @return
107
- *   An array of theme names. The first returned name should be the default
107
+ string[]   An array of theme names. The first returned name should be the default
108 108
  *   theme name.
109 109
  */
110 110
 function wysiwyg_tinymce_themes($editor, $profile) {
Please login to merge, or discard this patch.
drupal/sites/default/boinc/modules/contrib/wysiwyg/editors/whizzywig.inc 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
  *   An array containing editor properties as returned from hook_editor().
45 45
  *
46 46
  * @return
47
- *   The installed editor version.
47
+ null|string   The installed editor version.
48 48
  */
49 49
 function wysiwyg_whizzywig_version($editor) {
50 50
   $script = $editor['library path'] . '/whizzywig.js';
Please login to merge, or discard this patch.
drupal/sites/default/boinc/modules/contrib/wysiwyg/editors/wymeditor.inc 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
  *   An array containing editor properties as returned from hook_editor().
49 49
  *
50 50
  * @return
51
- *   The installed editor version.
51
+ null|string   The installed editor version.
52 52
  */
53 53
 function wysiwyg_wymeditor_version($editor) {
54 54
   $script = $editor['library path'] . '/jquery.wymeditor.js';
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
  *   A wysiwyg editor profile.
75 75
  *
76 76
  * @return
77
- *   An array of theme names. The first returned name should be the default
77
+ string[]   An array of theme names. The first returned name should be the default
78 78
  *   theme name.
79 79
  */
80 80
 function wysiwyg_wymeditor_themes($editor, $profile) {
Please login to merge, or discard this patch.