@@ -44,7 +44,7 @@ |
||
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'; |
@@ -9,32 +9,32 @@ discard block |
||
9 | 9 | * Plugin implementation of hook_editor(). |
10 | 10 | */ |
11 | 11 | function wysiwyg_whizzywig_editor() { |
12 | - $editor['whizzywig'] = array( |
|
12 | + $editor['whizzywig'] = array( |
|
13 | 13 | 'title' => 'Whizzywig', |
14 | 14 | 'vendor url' => 'http://www.unverse.net', |
15 | 15 | 'download url' => 'http://www.unverse.net/whizzywig-download.html', |
16 | 16 | 'libraries' => array( |
17 | - '' => array( |
|
17 | + '' => array( |
|
18 | 18 | 'title' => 'Default', |
19 | 19 | 'files' => array('whizzywig.js', 'xhtml.js'), |
20 | - ), |
|
20 | + ), |
|
21 | 21 | ), |
22 | 22 | 'version callback' => 'wysiwyg_whizzywig_version', |
23 | 23 | 'settings callback' => 'wysiwyg_whizzywig_settings', |
24 | 24 | 'plugin callback' => 'wysiwyg_whizzywig_plugins', |
25 | 25 | 'versions' => array( |
26 | - '55' => array( |
|
26 | + '55' => array( |
|
27 | 27 | 'js files' => array('whizzywig.js'), |
28 | - ), |
|
29 | - '56' => array( |
|
28 | + ), |
|
29 | + '56' => array( |
|
30 | 30 | 'js files' => array('whizzywig-56.js'), |
31 | - ), |
|
32 | - '60' => array( |
|
31 | + ), |
|
32 | + '60' => array( |
|
33 | 33 | 'js files' => array('whizzywig-60.js'), |
34 | - ), |
|
34 | + ), |
|
35 | 35 | ), |
36 | - ); |
|
37 | - return $editor; |
|
36 | + ); |
|
37 | + return $editor; |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | /** |
@@ -47,19 +47,19 @@ discard block |
||
47 | 47 | * The installed editor version. |
48 | 48 | */ |
49 | 49 | function wysiwyg_whizzywig_version($editor) { |
50 | - $script = $editor['library path'] . '/whizzywig.js'; |
|
51 | - if (!file_exists($script)) { |
|
50 | + $script = $editor['library path'] . '/whizzywig.js'; |
|
51 | + if (!file_exists($script)) { |
|
52 | 52 | return; |
53 | - } |
|
54 | - $script = fopen($script, 'r'); |
|
55 | - $line = fgets($script, 43); |
|
56 | - // 55: Whizzywig v55i |
|
57 | - // 60: Whizzywig 60 |
|
58 | - if (preg_match('@Whizzywig v?([0-9]+)@', $line, $version)) { |
|
53 | + } |
|
54 | + $script = fopen($script, 'r'); |
|
55 | + $line = fgets($script, 43); |
|
56 | + // 55: Whizzywig v55i |
|
57 | + // 60: Whizzywig 60 |
|
58 | + if (preg_match('@Whizzywig v?([0-9]+)@', $line, $version)) { |
|
59 | 59 | fclose($script); |
60 | 60 | return $version[1]; |
61 | - } |
|
62 | - fclose($script); |
|
61 | + } |
|
62 | + fclose($script); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | /** |
@@ -77,53 +77,53 @@ discard block |
||
77 | 77 | * Drupal.settings.wysiwyg.configs.{editor} |
78 | 78 | */ |
79 | 79 | function wysiwyg_whizzywig_settings($editor, $config, $theme) { |
80 | - $settings = array(); |
|
80 | + $settings = array(); |
|
81 | 81 | |
82 | - // Add path to button images, if available. |
|
83 | - if (is_dir($editor['library path'] . '/btn')) { |
|
82 | + // Add path to button images, if available. |
|
83 | + if (is_dir($editor['library path'] . '/btn')) { |
|
84 | 84 | $settings['buttonPath'] = base_path() . $editor['library path'] . '/btn/'; |
85 | - } |
|
86 | - if (file_exists($editor['library path'] . '/WhizzywigToolbar.png')) { |
|
85 | + } |
|
86 | + if (file_exists($editor['library path'] . '/WhizzywigToolbar.png')) { |
|
87 | 87 | $settings['toolbarImagePath'] = base_path() . $editor['library path'] . '/WhizzywigToolbar.png'; |
88 | - } |
|
89 | - // Filename changed in version 60. |
|
90 | - elseif (file_exists($editor['library path'] . '/icons.png')) { |
|
88 | + } |
|
89 | + // Filename changed in version 60. |
|
90 | + elseif (file_exists($editor['library path'] . '/icons.png')) { |
|
91 | 91 | $settings['toolbarImagePath'] = base_path() . $editor['library path'] . '/icons.png'; |
92 | - } |
|
92 | + } |
|
93 | 93 | |
94 | - // Add configured buttons or all available. |
|
95 | - $settings['buttons'] = array(); |
|
96 | - if (!empty($config['buttons'])) { |
|
94 | + // Add configured buttons or all available. |
|
95 | + $settings['buttons'] = array(); |
|
96 | + if (!empty($config['buttons'])) { |
|
97 | 97 | $buttons = array(); |
98 | 98 | foreach ($config['buttons'] as $plugin) { |
99 | - $buttons = array_merge($buttons, $plugin); |
|
99 | + $buttons = array_merge($buttons, $plugin); |
|
100 | 100 | } |
101 | 101 | $settings['buttons'] = implode(' ', array_keys($buttons)); |
102 | - } |
|
102 | + } |
|
103 | 103 | |
104 | - // Add editor content stylesheet. |
|
105 | - if (isset($config['css_setting'])) { |
|
104 | + // Add editor content stylesheet. |
|
105 | + if (isset($config['css_setting'])) { |
|
106 | 106 | if ($config['css_setting'] == 'theme') { |
107 | - $css = path_to_theme() . '/style.css'; |
|
108 | - if (file_exists($css)) { |
|
107 | + $css = path_to_theme() . '/style.css'; |
|
108 | + if (file_exists($css)) { |
|
109 | 109 | $settings['externalCSS'] = base_path() . $css; |
110 | - } |
|
110 | + } |
|
111 | 111 | } |
112 | 112 | else if ($config['css_setting'] == 'self' && isset($config['css_path'])) { |
113 | - $settings['externalCSS'] = strtr($config['css_path'], array('%b' => base_path(), '%t' => path_to_theme())); |
|
113 | + $settings['externalCSS'] = strtr($config['css_path'], array('%b' => base_path(), '%t' => path_to_theme())); |
|
114 | + } |
|
114 | 115 | } |
115 | - } |
|
116 | 116 | |
117 | - return $settings; |
|
117 | + return $settings; |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
121 | 121 | * Return internal plugins for this editor; semi-implementation of hook_wysiwyg_plugin(). |
122 | 122 | */ |
123 | 123 | function wysiwyg_whizzywig_plugins($editor) { |
124 | - return array( |
|
124 | + return array( |
|
125 | 125 | 'default' => array( |
126 | - 'buttons' => array( |
|
126 | + 'buttons' => array( |
|
127 | 127 | 'formatblock' => t('HTML block format'), 'fontname' => t('Font'), 'fontsize' => t('Font size'), |
128 | 128 | 'bold' => t('Bold'), 'italic' => t('Italic'), 'underline' => t('Underline'), |
129 | 129 | 'left' => t('Align left'), 'center' => t('Align center'), 'right' => t('Align right'), |
@@ -139,9 +139,9 @@ discard block |
||
139 | 139 | 'clean' => t('Clean-up'), |
140 | 140 | 'html' => t('Source code'), |
141 | 141 | 'spellcheck' => t('Spell check'), |
142 | - ), |
|
143 | - 'internal' => TRUE, |
|
142 | + ), |
|
143 | + 'internal' => TRUE, |
|
144 | 144 | ), |
145 | - ); |
|
145 | + ); |
|
146 | 146 | } |
147 | 147 |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | * The installed editor version. |
48 | 48 | */ |
49 | 49 | function wysiwyg_whizzywig_version($editor) { |
50 | - $script = $editor['library path'] . '/whizzywig.js'; |
|
50 | + $script = $editor['library path'].'/whizzywig.js'; |
|
51 | 51 | if (!file_exists($script)) { |
52 | 52 | return; |
53 | 53 | } |
@@ -80,15 +80,15 @@ discard block |
||
80 | 80 | $settings = array(); |
81 | 81 | |
82 | 82 | // Add path to button images, if available. |
83 | - if (is_dir($editor['library path'] . '/btn')) { |
|
84 | - $settings['buttonPath'] = base_path() . $editor['library path'] . '/btn/'; |
|
83 | + if (is_dir($editor['library path'].'/btn')) { |
|
84 | + $settings['buttonPath'] = base_path().$editor['library path'].'/btn/'; |
|
85 | 85 | } |
86 | - if (file_exists($editor['library path'] . '/WhizzywigToolbar.png')) { |
|
87 | - $settings['toolbarImagePath'] = base_path() . $editor['library path'] . '/WhizzywigToolbar.png'; |
|
86 | + if (file_exists($editor['library path'].'/WhizzywigToolbar.png')) { |
|
87 | + $settings['toolbarImagePath'] = base_path().$editor['library path'].'/WhizzywigToolbar.png'; |
|
88 | 88 | } |
89 | 89 | // Filename changed in version 60. |
90 | - elseif (file_exists($editor['library path'] . '/icons.png')) { |
|
91 | - $settings['toolbarImagePath'] = base_path() . $editor['library path'] . '/icons.png'; |
|
90 | + elseif (file_exists($editor['library path'].'/icons.png')) { |
|
91 | + $settings['toolbarImagePath'] = base_path().$editor['library path'].'/icons.png'; |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | // Add configured buttons or all available. |
@@ -104,9 +104,9 @@ discard block |
||
104 | 104 | // Add editor content stylesheet. |
105 | 105 | if (isset($config['css_setting'])) { |
106 | 106 | if ($config['css_setting'] == 'theme') { |
107 | - $css = path_to_theme() . '/style.css'; |
|
107 | + $css = path_to_theme().'/style.css'; |
|
108 | 108 | if (file_exists($css)) { |
109 | - $settings['externalCSS'] = base_path() . $css; |
|
109 | + $settings['externalCSS'] = base_path().$css; |
|
110 | 110 | } |
111 | 111 | } |
112 | 112 | else if ($config['css_setting'] == 'self' && isset($config['css_path'])) { |
@@ -108,8 +108,7 @@ |
||
108 | 108 | if (file_exists($css)) { |
109 | 109 | $settings['externalCSS'] = base_path() . $css; |
110 | 110 | } |
111 | - } |
|
112 | - else if ($config['css_setting'] == 'self' && isset($config['css_path'])) { |
|
111 | + } else if ($config['css_setting'] == 'self' && isset($config['css_path'])) { |
|
113 | 112 | $settings['externalCSS'] = strtr($config['css_path'], array('%b' => base_path(), '%t' => path_to_theme())); |
114 | 113 | } |
115 | 114 | } |
@@ -48,7 +48,7 @@ discard block |
||
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 |
||
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) { |
@@ -9,36 +9,36 @@ discard block |
||
9 | 9 | * Plugin implementation of hook_editor(). |
10 | 10 | */ |
11 | 11 | function wysiwyg_wymeditor_editor() { |
12 | - $editor['wymeditor'] = array( |
|
12 | + $editor['wymeditor'] = array( |
|
13 | 13 | 'title' => 'WYMeditor', |
14 | 14 | 'vendor url' => 'http://www.wymeditor.org/', |
15 | 15 | 'download url' => 'http://www.wymeditor.org/download/', |
16 | 16 | 'library path' => wysiwyg_get_path('wymeditor') . '/wymeditor', |
17 | 17 | 'libraries' => array( |
18 | - 'min' => array( |
|
18 | + 'min' => array( |
|
19 | 19 | 'title' => 'Minified', |
20 | 20 | 'files' => array('jquery.wymeditor.min.js'), |
21 | - ), |
|
22 | - 'pack' => array( |
|
21 | + ), |
|
22 | + 'pack' => array( |
|
23 | 23 | 'title' => 'Packed', |
24 | 24 | 'files' => array('jquery.wymeditor.pack.js'), |
25 | - ), |
|
26 | - 'src' => array( |
|
25 | + ), |
|
26 | + 'src' => array( |
|
27 | 27 | 'title' => 'Source', |
28 | 28 | 'files' => array('jquery.wymeditor.js'), |
29 | - ), |
|
29 | + ), |
|
30 | 30 | ), |
31 | 31 | 'version callback' => 'wysiwyg_wymeditor_version', |
32 | 32 | 'themes callback' => 'wysiwyg_wymeditor_themes', |
33 | 33 | 'settings callback' => 'wysiwyg_wymeditor_settings', |
34 | 34 | 'plugin callback' => 'wysiwyg_wymeditor_plugins', |
35 | 35 | 'versions' => array( |
36 | - '0.5-rc1' => array( |
|
36 | + '0.5-rc1' => array( |
|
37 | 37 | 'js files' => array('wymeditor.js'), |
38 | - ), |
|
38 | + ), |
|
39 | 39 | ), |
40 | - ); |
|
41 | - return $editor; |
|
40 | + ); |
|
41 | + return $editor; |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
@@ -51,18 +51,18 @@ discard block |
||
51 | 51 | * The installed editor version. |
52 | 52 | */ |
53 | 53 | function wysiwyg_wymeditor_version($editor) { |
54 | - $script = $editor['library path'] . '/jquery.wymeditor.js'; |
|
55 | - if (!file_exists($script)) { |
|
54 | + $script = $editor['library path'] . '/jquery.wymeditor.js'; |
|
55 | + if (!file_exists($script)) { |
|
56 | 56 | return; |
57 | - } |
|
58 | - $script = fopen($script, 'r'); |
|
59 | - fgets($script); |
|
60 | - $line = fgets($script); |
|
61 | - if (preg_match('@version\s+([0-9a-z\.-]+)@', $line, $version)) { |
|
57 | + } |
|
58 | + $script = fopen($script, 'r'); |
|
59 | + fgets($script); |
|
60 | + $line = fgets($script); |
|
61 | + if (preg_match('@version\s+([0-9a-z\.-]+)@', $line, $version)) { |
|
62 | 62 | fclose($script); |
63 | 63 | return $version[1]; |
64 | - } |
|
65 | - fclose($script); |
|
64 | + } |
|
65 | + fclose($script); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | /** |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | * theme name. |
79 | 79 | */ |
80 | 80 | function wysiwyg_wymeditor_themes($editor, $profile) { |
81 | - return array('compact', 'default', 'minimal', 'silver', 'twopanels'); |
|
81 | + return array('compact', 'default', 'minimal', 'silver', 'twopanels'); |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | /** |
@@ -96,99 +96,99 @@ discard block |
||
96 | 96 | * Drupal.settings.wysiwyg.configs.{editor} |
97 | 97 | */ |
98 | 98 | function wysiwyg_wymeditor_settings($editor, $config, $theme) { |
99 | - // @todo Setup $library in wysiwyg_load_editor() already. |
|
100 | - $library = (isset($editor['library']) ? $editor['library'] : key($editor['libraries'])); |
|
101 | - $settings = array( |
|
99 | + // @todo Setup $library in wysiwyg_load_editor() already. |
|
100 | + $library = (isset($editor['library']) ? $editor['library'] : key($editor['libraries'])); |
|
101 | + $settings = array( |
|
102 | 102 | 'basePath' => base_path() . $editor['library path'] . '/', |
103 | 103 | 'wymPath' => $editor['libraries'][$library]['files'][0], |
104 | 104 | // @todo Does not work in Drupal; jQuery can live anywhere. |
105 | 105 | 'jQueryPath' => base_path() . 'misc/jquery.js', |
106 | 106 | 'updateSelector' => '.form-submit', |
107 | 107 | 'skin' => $theme, |
108 | - ); |
|
108 | + ); |
|
109 | 109 | |
110 | - if (isset($config['language'])) { |
|
110 | + if (isset($config['language'])) { |
|
111 | 111 | $settings['lang'] = $config['language']; |
112 | - } |
|
112 | + } |
|
113 | 113 | |
114 | - // Add configured buttons. |
|
115 | - $settings['toolsItems'] = array(); |
|
116 | - if (!empty($config['buttons'])) { |
|
114 | + // Add configured buttons. |
|
115 | + $settings['toolsItems'] = array(); |
|
116 | + if (!empty($config['buttons'])) { |
|
117 | 117 | $buttoninfo = _wysiwyg_wymeditor_button_info(); |
118 | 118 | $plugins = wysiwyg_get_plugins($editor['name']); |
119 | 119 | foreach ($config['buttons'] as $plugin => $buttons) { |
120 | - foreach ($buttons as $button => $enabled) { |
|
120 | + foreach ($buttons as $button => $enabled) { |
|
121 | 121 | // Iterate separately over buttons and extensions properties. |
122 | 122 | foreach (array('buttons', 'extensions') as $type) { |
123 | - // Skip unavailable plugins. |
|
124 | - if (!isset($plugins[$plugin][$type][$button])) { |
|
123 | + // Skip unavailable plugins. |
|
124 | + if (!isset($plugins[$plugin][$type][$button])) { |
|
125 | 125 | continue; |
126 | - } |
|
127 | - // Add buttons. |
|
128 | - if ($type == 'buttons') { |
|
126 | + } |
|
127 | + // Add buttons. |
|
128 | + if ($type == 'buttons') { |
|
129 | 129 | // Merge meta-data for internal default buttons. |
130 | 130 | if (isset($buttoninfo[$button])) { |
131 | - $buttoninfo[$button] += array('name' => $button); |
|
132 | - $settings['toolsItems'][] = $buttoninfo[$button]; |
|
131 | + $buttoninfo[$button] += array('name' => $button); |
|
132 | + $settings['toolsItems'][] = $buttoninfo[$button]; |
|
133 | 133 | } |
134 | 134 | // For custom buttons, try to provide a valid button definition. |
135 | 135 | else { |
136 | - $settings['toolsItems'][] = array( |
|
136 | + $settings['toolsItems'][] = array( |
|
137 | 137 | 'name' => $button, |
138 | 138 | 'title' => $plugins[$plugin][$type][$button], |
139 | 139 | 'css' => 'wym_tools_' . $button, |
140 | - ); |
|
140 | + ); |
|
141 | + } |
|
141 | 142 | } |
142 | - } |
|
143 | 143 | } |
144 | - } |
|
144 | + } |
|
145 | + } |
|
145 | 146 | } |
146 | - } |
|
147 | 147 | |
148 | - if (!empty($config['block_formats'])) { |
|
148 | + if (!empty($config['block_formats'])) { |
|
149 | 149 | $containers = array( |
150 | - 'p' => 'Paragraph', |
|
151 | - 'h1' => 'Heading_1', |
|
152 | - 'h2' => 'Heading_2', |
|
153 | - 'h3' => 'Heading_3', |
|
154 | - 'h4' => 'Heading_4', |
|
155 | - 'h5' => 'Heading_5', |
|
156 | - 'h6' => 'Heading_6', |
|
157 | - 'pre' => 'Preformatted', |
|
158 | - 'blockquote' => 'Blockquote', |
|
159 | - 'th' => 'Table_Header', |
|
150 | + 'p' => 'Paragraph', |
|
151 | + 'h1' => 'Heading_1', |
|
152 | + 'h2' => 'Heading_2', |
|
153 | + 'h3' => 'Heading_3', |
|
154 | + 'h4' => 'Heading_4', |
|
155 | + 'h5' => 'Heading_5', |
|
156 | + 'h6' => 'Heading_6', |
|
157 | + 'pre' => 'Preformatted', |
|
158 | + 'blockquote' => 'Blockquote', |
|
159 | + 'th' => 'Table_Header', |
|
160 | 160 | ); |
161 | 161 | foreach (explode(',', $config['block_formats']) as $tag) { |
162 | - if (isset($containers[$tag])) { |
|
162 | + if (isset($containers[$tag])) { |
|
163 | 163 | $settings['containersItems'][] = array( |
164 | - 'name' => strtoupper($tag), |
|
165 | - 'title' => $containers[$tag], |
|
166 | - 'css' => 'wym_containers_' . $tag, |
|
164 | + 'name' => strtoupper($tag), |
|
165 | + 'title' => $containers[$tag], |
|
166 | + 'css' => 'wym_containers_' . $tag, |
|
167 | 167 | ); |
168 | - } |
|
168 | + } |
|
169 | + } |
|
169 | 170 | } |
170 | - } |
|
171 | 171 | |
172 | - if (isset($config['css_setting'])) { |
|
172 | + if (isset($config['css_setting'])) { |
|
173 | 173 | if ($config['css_setting'] == 'theme') { |
174 | - // WYMeditor only supports one CSS file currently. |
|
175 | - $settings['stylesheet'] = reset(wysiwyg_get_css()); |
|
174 | + // WYMeditor only supports one CSS file currently. |
|
175 | + $settings['stylesheet'] = reset(wysiwyg_get_css()); |
|
176 | 176 | } |
177 | 177 | else if ($config['css_setting'] == 'self' && isset($config['css_path'])) { |
178 | - $settings['stylesheet'] = strtr($config['css_path'], array('%b' => base_path(), '%t' => path_to_theme())); |
|
178 | + $settings['stylesheet'] = strtr($config['css_path'], array('%b' => base_path(), '%t' => path_to_theme())); |
|
179 | + } |
|
179 | 180 | } |
180 | - } |
|
181 | 181 | |
182 | - return $settings; |
|
182 | + return $settings; |
|
183 | 183 | } |
184 | 184 | |
185 | 185 | /** |
186 | 186 | * Return internal plugins for this editor; semi-implementation of hook_wysiwyg_plugin(). |
187 | 187 | */ |
188 | 188 | function wysiwyg_wymeditor_plugins($editor) { |
189 | - $plugins = array( |
|
189 | + $plugins = array( |
|
190 | 190 | 'default' => array( |
191 | - 'buttons' => array( |
|
191 | + 'buttons' => array( |
|
192 | 192 | 'Bold' => t('Bold'), 'Italic' => t('Italic'), |
193 | 193 | 'InsertOrderedList' => t('Bullet list'), 'InsertUnorderedList' => t('Numbered list'), |
194 | 194 | 'Outdent' => t('Outdent'), 'Indent' => t('Indent'), |
@@ -200,18 +200,18 @@ discard block |
||
200 | 200 | 'Paste' => t('Paste'), |
201 | 201 | 'InsertTable' => t('Table'), |
202 | 202 | 'Preview' => t('Preview'), |
203 | - ), |
|
204 | - 'internal' => TRUE, |
|
203 | + ), |
|
204 | + 'internal' => TRUE, |
|
205 | 205 | ), |
206 | - ); |
|
207 | - return $plugins; |
|
206 | + ); |
|
207 | + return $plugins; |
|
208 | 208 | } |
209 | 209 | |
210 | 210 | /** |
211 | 211 | * Helper function to provide additional meta-data for internal default buttons. |
212 | 212 | */ |
213 | 213 | function _wysiwyg_wymeditor_button_info() { |
214 | - return array( |
|
214 | + return array( |
|
215 | 215 | 'Bold' => array('title'=> 'Strong', 'css'=> 'wym_tools_strong'), |
216 | 216 | 'Italic' => array('title'=> 'Emphasis', 'css'=> 'wym_tools_emphasis'), |
217 | 217 | 'Superscript' => array('title'=> 'Superscript', 'css'=> 'wym_tools_superscript'), |
@@ -229,5 +229,5 @@ discard block |
||
229 | 229 | 'Paste' => array('title'=> 'Paste_From_Word', 'css'=> 'wym_tools_paste'), |
230 | 230 | 'ToggleHtml' => array('title'=> 'HTML', 'css'=> 'wym_tools_html'), |
231 | 231 | 'Preview' => array('title'=> 'Preview', 'css'=> 'wym_tools_preview'), |
232 | - ); |
|
232 | + ); |
|
233 | 233 | } |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | 'title' => 'WYMeditor', |
14 | 14 | 'vendor url' => 'http://www.wymeditor.org/', |
15 | 15 | 'download url' => 'http://www.wymeditor.org/download/', |
16 | - 'library path' => wysiwyg_get_path('wymeditor') . '/wymeditor', |
|
16 | + 'library path' => wysiwyg_get_path('wymeditor').'/wymeditor', |
|
17 | 17 | 'libraries' => array( |
18 | 18 | 'min' => array( |
19 | 19 | 'title' => 'Minified', |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | * The installed editor version. |
52 | 52 | */ |
53 | 53 | function wysiwyg_wymeditor_version($editor) { |
54 | - $script = $editor['library path'] . '/jquery.wymeditor.js'; |
|
54 | + $script = $editor['library path'].'/jquery.wymeditor.js'; |
|
55 | 55 | if (!file_exists($script)) { |
56 | 56 | return; |
57 | 57 | } |
@@ -99,10 +99,10 @@ discard block |
||
99 | 99 | // @todo Setup $library in wysiwyg_load_editor() already. |
100 | 100 | $library = (isset($editor['library']) ? $editor['library'] : key($editor['libraries'])); |
101 | 101 | $settings = array( |
102 | - 'basePath' => base_path() . $editor['library path'] . '/', |
|
102 | + 'basePath' => base_path().$editor['library path'].'/', |
|
103 | 103 | 'wymPath' => $editor['libraries'][$library]['files'][0], |
104 | 104 | // @todo Does not work in Drupal; jQuery can live anywhere. |
105 | - 'jQueryPath' => base_path() . 'misc/jquery.js', |
|
105 | + 'jQueryPath' => base_path().'misc/jquery.js', |
|
106 | 106 | 'updateSelector' => '.form-submit', |
107 | 107 | 'skin' => $theme, |
108 | 108 | ); |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | $settings['toolsItems'][] = array( |
137 | 137 | 'name' => $button, |
138 | 138 | 'title' => $plugins[$plugin][$type][$button], |
139 | - 'css' => 'wym_tools_' . $button, |
|
139 | + 'css' => 'wym_tools_'.$button, |
|
140 | 140 | ); |
141 | 141 | } |
142 | 142 | } |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | $settings['containersItems'][] = array( |
164 | 164 | 'name' => strtoupper($tag), |
165 | 165 | 'title' => $containers[$tag], |
166 | - 'css' => 'wym_containers_' . $tag, |
|
166 | + 'css' => 'wym_containers_'.$tag, |
|
167 | 167 | ); |
168 | 168 | } |
169 | 169 | } |
@@ -173,8 +173,7 @@ |
||
173 | 173 | if ($config['css_setting'] == 'theme') { |
174 | 174 | // WYMeditor only supports one CSS file currently. |
175 | 175 | $settings['stylesheet'] = reset(wysiwyg_get_css()); |
176 | - } |
|
177 | - else if ($config['css_setting'] == 'self' && isset($config['css_path'])) { |
|
176 | + } else if ($config['css_setting'] == 'self' && isset($config['css_path'])) { |
|
178 | 177 | $settings['stylesheet'] = strtr($config['css_path'], array('%b' => base_path(), '%t' => path_to_theme())); |
179 | 178 | } |
180 | 179 | } |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | * An array containing editor properties as returned from hook_editor(). |
62 | 62 | * |
63 | 63 | * @return |
64 | - * The installed editor version. |
|
64 | + null|string The installed editor version. |
|
65 | 65 | */ |
66 | 66 | function wysiwyg_yui_version($editor) { |
67 | 67 | $library = $editor['library path'] . '/editor/editor.js'; |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | * A wysiwyg editor profile. |
90 | 90 | * |
91 | 91 | * @return |
92 | - * An array of theme names. The first returned name should be the default |
|
92 | + string[] An array of theme names. The first returned name should be the default |
|
93 | 93 | * theme name. |
94 | 94 | */ |
95 | 95 | function wysiwyg_yui_themes($editor, $profile) { |
@@ -9,36 +9,36 @@ discard block |
||
9 | 9 | * Plugin implementation of hook_editor(). |
10 | 10 | */ |
11 | 11 | function wysiwyg_yui_editor() { |
12 | - $editor['yui'] = array( |
|
12 | + $editor['yui'] = array( |
|
13 | 13 | 'title' => 'YUI editor', |
14 | 14 | 'vendor url' => 'http://developer.yahoo.com/yui/editor/', |
15 | 15 | 'download url' => 'http://developer.yahoo.com/yui/download/', |
16 | 16 | 'library path' => wysiwyg_get_path('yui') . '/build', |
17 | 17 | 'libraries' => array( |
18 | - 'min' => array( |
|
18 | + 'min' => array( |
|
19 | 19 | 'title' => 'Minified', |
20 | 20 | 'files' => array( |
21 | - 'yahoo-dom-event/yahoo-dom-event.js', |
|
22 | - 'animation/animation-min.js', |
|
23 | - 'element/element-min.js', |
|
24 | - 'container/container-min.js', |
|
25 | - 'menu/menu-min.js', |
|
26 | - 'button/button-min.js', |
|
27 | - 'editor/editor-min.js', |
|
21 | + 'yahoo-dom-event/yahoo-dom-event.js', |
|
22 | + 'animation/animation-min.js', |
|
23 | + 'element/element-min.js', |
|
24 | + 'container/container-min.js', |
|
25 | + 'menu/menu-min.js', |
|
26 | + 'button/button-min.js', |
|
27 | + 'editor/editor-min.js', |
|
28 | 28 | ), |
29 | - ), |
|
30 | - 'src' => array( |
|
29 | + ), |
|
30 | + 'src' => array( |
|
31 | 31 | 'title' => 'Source', |
32 | 32 | 'files' => array( |
33 | - 'yahoo-dom-event/yahoo-dom-event.js', |
|
34 | - 'animation/animation.js', |
|
35 | - 'element/element.js', |
|
36 | - 'container/container.js', |
|
37 | - 'menu/menu.js', |
|
38 | - 'button/button.js', |
|
39 | - 'editor/editor.js', |
|
33 | + 'yahoo-dom-event/yahoo-dom-event.js', |
|
34 | + 'animation/animation.js', |
|
35 | + 'element/element.js', |
|
36 | + 'container/container.js', |
|
37 | + 'menu/menu.js', |
|
38 | + 'button/button.js', |
|
39 | + 'editor/editor.js', |
|
40 | + ), |
|
40 | 41 | ), |
41 | - ), |
|
42 | 42 | ), |
43 | 43 | 'version callback' => 'wysiwyg_yui_version', |
44 | 44 | 'themes callback' => 'wysiwyg_yui_themes', |
@@ -46,12 +46,12 @@ discard block |
||
46 | 46 | 'settings callback' => 'wysiwyg_yui_settings', |
47 | 47 | 'plugin callback' => 'wysiwyg_yui_plugins', |
48 | 48 | 'versions' => array( |
49 | - '2.7.0' => array( |
|
49 | + '2.7.0' => array( |
|
50 | 50 | 'js files' => array('yui.js'), |
51 | - ), |
|
51 | + ), |
|
52 | 52 | ), |
53 | - ); |
|
54 | - return $editor; |
|
53 | + ); |
|
54 | + return $editor; |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
@@ -64,20 +64,20 @@ discard block |
||
64 | 64 | * The installed editor version. |
65 | 65 | */ |
66 | 66 | function wysiwyg_yui_version($editor) { |
67 | - $library = $editor['library path'] . '/editor/editor.js'; |
|
68 | - if (!file_exists($library)) { |
|
67 | + $library = $editor['library path'] . '/editor/editor.js'; |
|
68 | + if (!file_exists($library)) { |
|
69 | 69 | return; |
70 | - } |
|
71 | - $library = fopen($library, 'r'); |
|
72 | - $max_lines = 10; |
|
73 | - while ($max_lines && $line = fgets($library, 60)) { |
|
70 | + } |
|
71 | + $library = fopen($library, 'r'); |
|
72 | + $max_lines = 10; |
|
73 | + while ($max_lines && $line = fgets($library, 60)) { |
|
74 | 74 | if (preg_match('@version:\s([0-9\.]+)@', $line, $version)) { |
75 | - fclose($library); |
|
76 | - return $version[1]; |
|
75 | + fclose($library); |
|
76 | + return $version[1]; |
|
77 | 77 | } |
78 | 78 | $max_lines--; |
79 | - } |
|
80 | - fclose($library); |
|
79 | + } |
|
80 | + fclose($library); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | /** |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | * theme name. |
94 | 94 | */ |
95 | 95 | function wysiwyg_yui_themes($editor, $profile) { |
96 | - return array('sam'); |
|
96 | + return array('sam'); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | /** |
@@ -105,11 +105,11 @@ discard block |
||
105 | 105 | * The internal library name (array key) to use. |
106 | 106 | */ |
107 | 107 | function wysiwyg_yui_load($editor, $library) { |
108 | - drupal_add_css($editor['library path'] . '/menu/assets/skins/sam/menu.css'); |
|
109 | - drupal_add_css($editor['library path'] . '/button/assets/skins/sam/button.css'); |
|
110 | - drupal_add_css($editor['library path'] . '/fonts/fonts-min.css'); |
|
111 | - drupal_add_css($editor['library path'] . '/container/assets/skins/sam/container.css'); |
|
112 | - drupal_add_css($editor['library path'] . '/editor/assets/skins/sam/editor.css'); |
|
108 | + drupal_add_css($editor['library path'] . '/menu/assets/skins/sam/menu.css'); |
|
109 | + drupal_add_css($editor['library path'] . '/button/assets/skins/sam/button.css'); |
|
110 | + drupal_add_css($editor['library path'] . '/fonts/fonts-min.css'); |
|
111 | + drupal_add_css($editor['library path'] . '/container/assets/skins/sam/container.css'); |
|
112 | + drupal_add_css($editor['library path'] . '/editor/assets/skins/sam/editor.css'); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | /** |
@@ -127,58 +127,58 @@ discard block |
||
127 | 127 | * Drupal.settings.wysiwyg.configs.{editor} |
128 | 128 | */ |
129 | 129 | function wysiwyg_yui_settings($editor, $config, $theme) { |
130 | - $settings = array( |
|
130 | + $settings = array( |
|
131 | 131 | 'theme' => $theme, |
132 | 132 | 'animate' => TRUE, |
133 | 133 | 'handleSubmit' => TRUE, |
134 | 134 | 'markup' => 'xhtml', |
135 | 135 | 'ptags' => TRUE, |
136 | - ); |
|
136 | + ); |
|
137 | 137 | |
138 | - if (isset($config['path_loc']) && $config['path_loc'] != 'none') { |
|
138 | + if (isset($config['path_loc']) && $config['path_loc'] != 'none') { |
|
139 | 139 | $settings['dompath'] = $config['path_loc']; |
140 | - } |
|
141 | - // Enable auto-height feature when editor should be resizable. |
|
142 | - if (!empty($config['resizing'])) { |
|
140 | + } |
|
141 | + // Enable auto-height feature when editor should be resizable. |
|
142 | + if (!empty($config['resizing'])) { |
|
143 | 143 | $settings['autoHeight'] = TRUE; |
144 | - } |
|
144 | + } |
|
145 | 145 | |
146 | - $settings += array( |
|
146 | + $settings += array( |
|
147 | 147 | 'toolbar' => array( |
148 | - 'collapse' => FALSE, |
|
149 | - 'draggable' => TRUE, |
|
150 | - 'buttonType' => 'advanced', |
|
151 | - 'buttons' => array(), |
|
148 | + 'collapse' => FALSE, |
|
149 | + 'draggable' => TRUE, |
|
150 | + 'buttonType' => 'advanced', |
|
151 | + 'buttons' => array(), |
|
152 | 152 | ), |
153 | - ); |
|
154 | - if (!empty($config['buttons'])) { |
|
153 | + ); |
|
154 | + if (!empty($config['buttons'])) { |
|
155 | 155 | $buttons = array(); |
156 | 156 | foreach ($config['buttons'] as $plugin => $enabled_buttons) { |
157 | - foreach ($enabled_buttons as $button => $enabled) { |
|
157 | + foreach ($enabled_buttons as $button => $enabled) { |
|
158 | 158 | $extra = array(); |
159 | 159 | if ($button == 'heading') { |
160 | - $extra = array('menu' => array( |
|
160 | + $extra = array('menu' => array( |
|
161 | 161 | array('text' => 'Normal', 'value' => 'none', 'checked' => TRUE), |
162 | - )); |
|
163 | - if (!empty($config['block_formats'])) { |
|
162 | + )); |
|
163 | + if (!empty($config['block_formats'])) { |
|
164 | 164 | $headings = array( |
165 | - 'p' => array('text' => 'Paragraph', 'value' => 'p'), |
|
166 | - 'h1' => array('text' => 'Heading 1', 'value' => 'h1'), |
|
167 | - 'h2' => array('text' => 'Heading 2', 'value' => 'h2'), |
|
168 | - 'h3' => array('text' => 'Heading 3', 'value' => 'h3'), |
|
169 | - 'h4' => array('text' => 'Heading 4', 'value' => 'h4'), |
|
170 | - 'h5' => array('text' => 'Heading 5', 'value' => 'h5'), |
|
171 | - 'h6' => array('text' => 'Heading 6', 'value' => 'h6'), |
|
165 | + 'p' => array('text' => 'Paragraph', 'value' => 'p'), |
|
166 | + 'h1' => array('text' => 'Heading 1', 'value' => 'h1'), |
|
167 | + 'h2' => array('text' => 'Heading 2', 'value' => 'h2'), |
|
168 | + 'h3' => array('text' => 'Heading 3', 'value' => 'h3'), |
|
169 | + 'h4' => array('text' => 'Heading 4', 'value' => 'h4'), |
|
170 | + 'h5' => array('text' => 'Heading 5', 'value' => 'h5'), |
|
171 | + 'h6' => array('text' => 'Heading 6', 'value' => 'h6'), |
|
172 | 172 | ); |
173 | 173 | foreach (explode(',', $config['block_formats']) as $tag) { |
174 | - if (isset($headings[$tag])) { |
|
174 | + if (isset($headings[$tag])) { |
|
175 | 175 | $extra['menu'][] = $headings[$tag]; |
176 | - } |
|
176 | + } |
|
177 | + } |
|
177 | 178 | } |
178 | - } |
|
179 | 179 | } |
180 | 180 | else if ($button == 'fontname') { |
181 | - $extra = array('menu' => array( |
|
181 | + $extra = array('menu' => array( |
|
182 | 182 | array('text' => 'Arial', 'checked' => TRUE), |
183 | 183 | array('text' => 'Arial Black'), |
184 | 184 | array('text' => 'Comic Sans MS'), |
@@ -188,32 +188,32 @@ discard block |
||
188 | 188 | array('text' => 'Times New Roman'), |
189 | 189 | array('text' => 'Trebuchet MS'), |
190 | 190 | array('text' => 'Verdana'), |
191 | - )); |
|
191 | + )); |
|
192 | 192 | } |
193 | 193 | $buttons[] = wysiwyg_yui_button_setting($editor, $plugin, $button, $extra); |
194 | - } |
|
194 | + } |
|
195 | 195 | } |
196 | 196 | // Group buttons in a dummy group. |
197 | 197 | $buttons = array('group' => 'default', 'label' => '', 'buttons' => $buttons); |
198 | 198 | $settings['toolbar']['buttons'] = array($buttons); |
199 | - } |
|
199 | + } |
|
200 | 200 | |
201 | - if (isset($config['css_setting'])) { |
|
201 | + if (isset($config['css_setting'])) { |
|
202 | 202 | if ($config['css_setting'] == 'theme') { |
203 | - $settings['extracss'] = wysiwyg_get_css(); |
|
203 | + $settings['extracss'] = wysiwyg_get_css(); |
|
204 | 204 | } |
205 | 205 | else if ($config['css_setting'] == 'self' && isset($config['css_path'])) { |
206 | - $settings['extracss'] = strtr($config['css_path'], array('%b' => base_path(), '%t' => path_to_theme())); |
|
207 | - $settings['extracss'] = explode(',', $settings['extracss']); |
|
206 | + $settings['extracss'] = strtr($config['css_path'], array('%b' => base_path(), '%t' => path_to_theme())); |
|
207 | + $settings['extracss'] = explode(',', $settings['extracss']); |
|
208 | 208 | } |
209 | 209 | // YUI only supports inline CSS, so we need to use @import directives. |
210 | 210 | // Syntax: '@import "/base/path/to/theme/style.css"; ' |
211 | 211 | if (!empty($settings['extracss'])) { |
212 | - $settings['extracss'] = '@import "' . implode('"; @import "', $settings['extracss']) . '";'; |
|
212 | + $settings['extracss'] = '@import "' . implode('"; @import "', $settings['extracss']) . '";'; |
|
213 | + } |
|
213 | 214 | } |
214 | - } |
|
215 | 215 | |
216 | - return $settings; |
|
216 | + return $settings; |
|
217 | 217 | } |
218 | 218 | |
219 | 219 | /** |
@@ -230,52 +230,52 @@ discard block |
||
230 | 230 | * resulting button. |
231 | 231 | */ |
232 | 232 | function wysiwyg_yui_button_setting($editor, $plugin, $button, $extra = array()) { |
233 | - static $plugins; |
|
233 | + static $plugins; |
|
234 | 234 | |
235 | - if (!isset($plugins)) { |
|
235 | + if (!isset($plugins)) { |
|
236 | 236 | // @todo Invoke all enabled plugins, not just internals. |
237 | 237 | $plugins = wysiwyg_yui_plugins($editor); |
238 | - } |
|
238 | + } |
|
239 | 239 | |
240 | - // Return a simple separator. |
|
241 | - if ($button === 'separator') { |
|
240 | + // Return a simple separator. |
|
241 | + if ($button === 'separator') { |
|
242 | 242 | return array('type' => 'separator'); |
243 | - } |
|
244 | - // Setup defaults. |
|
245 | - $type = 'push'; |
|
246 | - $label = $plugins[$plugin]['buttons'][$button]; |
|
243 | + } |
|
244 | + // Setup defaults. |
|
245 | + $type = 'push'; |
|
246 | + $label = $plugins[$plugin]['buttons'][$button]; |
|
247 | 247 | |
248 | - // Special handling for certain buttons. |
|
249 | - if (in_array($button, array('heading', 'fontname'))) { |
|
248 | + // Special handling for certain buttons. |
|
249 | + if (in_array($button, array('heading', 'fontname'))) { |
|
250 | 250 | $type = 'select'; |
251 | 251 | $label = $extra['menu'][0]['text']; |
252 | - } |
|
253 | - elseif (in_array($button, array('fontsize'))) { |
|
252 | + } |
|
253 | + elseif (in_array($button, array('fontsize'))) { |
|
254 | 254 | $type = 'spin'; |
255 | - } |
|
256 | - elseif (in_array($button, array('forecolor', 'backcolor'))) { |
|
255 | + } |
|
256 | + elseif (in_array($button, array('forecolor', 'backcolor'))) { |
|
257 | 257 | $type = 'color'; |
258 | - } |
|
258 | + } |
|
259 | 259 | |
260 | - $button = array( |
|
260 | + $button = array( |
|
261 | 261 | 'type' => $type, |
262 | 262 | 'label' => $label, |
263 | 263 | 'value' => $button, |
264 | - ); |
|
265 | - // Add arbitrary other elements, if defined. |
|
266 | - if (!empty($extra)) { |
|
264 | + ); |
|
265 | + // Add arbitrary other elements, if defined. |
|
266 | + if (!empty($extra)) { |
|
267 | 267 | $button = array_merge($button, $extra); |
268 | - } |
|
269 | - return $button; |
|
268 | + } |
|
269 | + return $button; |
|
270 | 270 | } |
271 | 271 | |
272 | 272 | /** |
273 | 273 | * Return internal plugins for this editor; semi-implementation of hook_wysiwyg_plugin(). |
274 | 274 | */ |
275 | 275 | function wysiwyg_yui_plugins($editor) { |
276 | - return array( |
|
276 | + return array( |
|
277 | 277 | 'default' => array( |
278 | - 'buttons' => array( |
|
278 | + 'buttons' => array( |
|
279 | 279 | 'bold' => t('Bold'), 'italic' => t('Italic'), 'underline' => t('Underline'), |
280 | 280 | 'strikethrough' => t('Strike-through'), |
281 | 281 | 'justifyleft' => t('Align left'), 'justifycenter' => t('Align center'), 'justifyright' => t('Align right'), 'justifyfull' => t('Justify'), |
@@ -289,9 +289,9 @@ discard block |
||
289 | 289 | 'hiddenelements' => t('Show/hide hidden elements'), |
290 | 290 | 'removeformat' => t('Remove format'), |
291 | 291 | 'heading' => t('HTML block format'), 'fontname' => t('Font'), 'fontsize' => t('Font size'), |
292 | - ), |
|
293 | - 'internal' => TRUE, |
|
292 | + ), |
|
293 | + 'internal' => TRUE, |
|
294 | 294 | ), |
295 | - ); |
|
295 | + ); |
|
296 | 296 | } |
297 | 297 |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | 'title' => 'YUI editor', |
14 | 14 | 'vendor url' => 'http://developer.yahoo.com/yui/editor/', |
15 | 15 | 'download url' => 'http://developer.yahoo.com/yui/download/', |
16 | - 'library path' => wysiwyg_get_path('yui') . '/build', |
|
16 | + 'library path' => wysiwyg_get_path('yui').'/build', |
|
17 | 17 | 'libraries' => array( |
18 | 18 | 'min' => array( |
19 | 19 | 'title' => 'Minified', |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | * The installed editor version. |
65 | 65 | */ |
66 | 66 | function wysiwyg_yui_version($editor) { |
67 | - $library = $editor['library path'] . '/editor/editor.js'; |
|
67 | + $library = $editor['library path'].'/editor/editor.js'; |
|
68 | 68 | if (!file_exists($library)) { |
69 | 69 | return; |
70 | 70 | } |
@@ -105,11 +105,11 @@ discard block |
||
105 | 105 | * The internal library name (array key) to use. |
106 | 106 | */ |
107 | 107 | function wysiwyg_yui_load($editor, $library) { |
108 | - drupal_add_css($editor['library path'] . '/menu/assets/skins/sam/menu.css'); |
|
109 | - drupal_add_css($editor['library path'] . '/button/assets/skins/sam/button.css'); |
|
110 | - drupal_add_css($editor['library path'] . '/fonts/fonts-min.css'); |
|
111 | - drupal_add_css($editor['library path'] . '/container/assets/skins/sam/container.css'); |
|
112 | - drupal_add_css($editor['library path'] . '/editor/assets/skins/sam/editor.css'); |
|
108 | + drupal_add_css($editor['library path'].'/menu/assets/skins/sam/menu.css'); |
|
109 | + drupal_add_css($editor['library path'].'/button/assets/skins/sam/button.css'); |
|
110 | + drupal_add_css($editor['library path'].'/fonts/fonts-min.css'); |
|
111 | + drupal_add_css($editor['library path'].'/container/assets/skins/sam/container.css'); |
|
112 | + drupal_add_css($editor['library path'].'/editor/assets/skins/sam/editor.css'); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | /** |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | // YUI only supports inline CSS, so we need to use @import directives. |
210 | 210 | // Syntax: '@import "/base/path/to/theme/style.css"; ' |
211 | 211 | if (!empty($settings['extracss'])) { |
212 | - $settings['extracss'] = '@import "' . implode('"; @import "', $settings['extracss']) . '";'; |
|
212 | + $settings['extracss'] = '@import "'.implode('"; @import "', $settings['extracss']).'";'; |
|
213 | 213 | } |
214 | 214 | } |
215 | 215 |
@@ -176,8 +176,7 @@ discard block |
||
176 | 176 | } |
177 | 177 | } |
178 | 178 | } |
179 | - } |
|
180 | - else if ($button == 'fontname') { |
|
179 | + } else if ($button == 'fontname') { |
|
181 | 180 | $extra = array('menu' => array( |
182 | 181 | array('text' => 'Arial', 'checked' => TRUE), |
183 | 182 | array('text' => 'Arial Black'), |
@@ -201,8 +200,7 @@ discard block |
||
201 | 200 | if (isset($config['css_setting'])) { |
202 | 201 | if ($config['css_setting'] == 'theme') { |
203 | 202 | $settings['extracss'] = wysiwyg_get_css(); |
204 | - } |
|
205 | - else if ($config['css_setting'] == 'self' && isset($config['css_path'])) { |
|
203 | + } else if ($config['css_setting'] == 'self' && isset($config['css_path'])) { |
|
206 | 204 | $settings['extracss'] = strtr($config['css_path'], array('%b' => base_path(), '%t' => path_to_theme())); |
207 | 205 | $settings['extracss'] = explode(',', $settings['extracss']); |
208 | 206 | } |
@@ -249,11 +247,9 @@ discard block |
||
249 | 247 | if (in_array($button, array('heading', 'fontname'))) { |
250 | 248 | $type = 'select'; |
251 | 249 | $label = $extra['menu'][0]['text']; |
252 | - } |
|
253 | - elseif (in_array($button, array('fontsize'))) { |
|
250 | + } elseif (in_array($button, array('fontsize'))) { |
|
254 | 251 | $type = 'spin'; |
255 | - } |
|
256 | - elseif (in_array($button, array('forecolor', 'backcolor'))) { |
|
252 | + } elseif (in_array($button, array('forecolor', 'backcolor'))) { |
|
257 | 253 | $type = 'color'; |
258 | 254 | } |
259 | 255 |
@@ -674,6 +674,7 @@ discard block |
||
674 | 674 | |
675 | 675 | /** |
676 | 676 | * Remove a profile from the database. |
677 | + * @param stdClass $wysiwyg |
|
677 | 678 | */ |
678 | 679 | function wysiwyg_profile_delete($wysiwyg) { |
679 | 680 | if (!isset($wysiwyg->format)) { |
@@ -922,7 +923,7 @@ discard block |
||
922 | 923 | * Whether to prefix the resulting path with base_path(). |
923 | 924 | * |
924 | 925 | * @return |
925 | - * The path to the specified library. |
|
926 | + string The path to the specified library. |
|
926 | 927 | * |
927 | 928 | * @ingroup libraries |
928 | 929 | */ |
@@ -1014,7 +1015,7 @@ discard block |
||
1014 | 1015 | /** |
1015 | 1016 | * Return a list of directories by modules implementing wysiwyg_include_directory(). |
1016 | 1017 | * |
1017 | - * @param $plugintype |
|
1018 | + * @param string $plugintype |
|
1018 | 1019 | * The type of a plugin; can be 'editors'. |
1019 | 1020 | * |
1020 | 1021 | * @return |
@@ -1039,10 +1040,11 @@ discard block |
||
1039 | 1040 | * |
1040 | 1041 | * @param $module |
1041 | 1042 | * The module that owns the hook. |
1042 | - * @param $identifier |
|
1043 | + * @param string $identifier |
|
1043 | 1044 | * Either the module or 'wysiwyg_' . $file->name |
1044 | - * @param $hook |
|
1045 | + * @param string $hook |
|
1045 | 1046 | * The name of the hook being invoked. |
1047 | + * @param string $path |
|
1046 | 1048 | */ |
1047 | 1049 | function _wysiwyg_process_include($module, $identifier, $path, $hook) { |
1048 | 1050 | $function = $identifier . '_' . $hook; |
@@ -9,19 +9,19 @@ discard block |
||
9 | 9 | * Implementation of hook_menu(). |
10 | 10 | */ |
11 | 11 | function wysiwyg_menu() { |
12 | - $items['admin/settings/wysiwyg'] = array( |
|
12 | + $items['admin/settings/wysiwyg'] = array( |
|
13 | 13 | 'title' => 'Wysiwyg profiles', |
14 | 14 | 'page callback' => 'drupal_get_form', |
15 | 15 | 'page arguments' => array('wysiwyg_profile_overview'), |
16 | 16 | 'description' => 'Configure client-side editors.', |
17 | 17 | 'access arguments' => array('administer filters'), |
18 | 18 | 'file' => 'wysiwyg.admin.inc', |
19 | - ); |
|
20 | - $items['admin/settings/wysiwyg/profile'] = array( |
|
19 | + ); |
|
20 | + $items['admin/settings/wysiwyg/profile'] = array( |
|
21 | 21 | 'title' => 'List', |
22 | 22 | 'type' => MENU_DEFAULT_LOCAL_TASK, |
23 | - ); |
|
24 | - $items['admin/settings/wysiwyg/profile/%wysiwyg_profile/edit'] = array( |
|
23 | + ); |
|
24 | + $items['admin/settings/wysiwyg/profile/%wysiwyg_profile/edit'] = array( |
|
25 | 25 | 'title' => 'Edit', |
26 | 26 | 'page callback' => 'drupal_get_form', |
27 | 27 | 'page arguments' => array('wysiwyg_profile_form', 4), |
@@ -30,8 +30,8 @@ discard block |
||
30 | 30 | 'tab_root' => 'admin/settings/wysiwyg/profile', |
31 | 31 | 'tab_parent' => 'admin/settings/wysiwyg/profile/%wysiwyg_profile', |
32 | 32 | 'type' => MENU_LOCAL_TASK, |
33 | - ); |
|
34 | - $items['admin/settings/wysiwyg/profile/%wysiwyg_profile/delete'] = array( |
|
33 | + ); |
|
34 | + $items['admin/settings/wysiwyg/profile/%wysiwyg_profile/delete'] = array( |
|
35 | 35 | 'title' => 'Remove', |
36 | 36 | 'page callback' => 'drupal_get_form', |
37 | 37 | 'page arguments' => array('wysiwyg_profile_delete_confirm', 4), |
@@ -41,15 +41,15 @@ discard block |
||
41 | 41 | 'tab_parent' => 'admin/settings/wysiwyg/profile/%wysiwyg_profile', |
42 | 42 | 'type' => MENU_LOCAL_TASK, |
43 | 43 | 'weight' => 10, |
44 | - ); |
|
45 | - $items['wysiwyg/%'] = array( |
|
44 | + ); |
|
45 | + $items['wysiwyg/%'] = array( |
|
46 | 46 | 'page callback' => 'wysiwyg_dialog', |
47 | 47 | 'page arguments' => array(1), |
48 | 48 | 'access arguments' => array('access content'), |
49 | 49 | 'type' => MENU_CALLBACK, |
50 | 50 | 'file' => 'wysiwyg.dialog.inc', |
51 | - ); |
|
52 | - return $items; |
|
51 | + ); |
|
52 | + return $items; |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | /** |
@@ -59,37 +59,37 @@ discard block |
||
59 | 59 | * @see template_preprocess_page(), theme.inc |
60 | 60 | */ |
61 | 61 | function wysiwyg_theme() { |
62 | - return array( |
|
62 | + return array( |
|
63 | 63 | 'wysiwyg_profile_overview' => array( |
64 | - 'arguments' => array('form' => NULL), |
|
64 | + 'arguments' => array('form' => NULL), |
|
65 | 65 | ), |
66 | 66 | 'wysiwyg_admin_button_table' => array( |
67 | - 'arguments' => array('form' => NULL), |
|
67 | + 'arguments' => array('form' => NULL), |
|
68 | 68 | ), |
69 | 69 | 'wysiwyg_dialog_page' => array( |
70 | - 'arguments' => array('content' => NULL, 'show_messages' => TRUE), |
|
71 | - 'file' => 'wysiwyg.dialog.inc', |
|
72 | - 'template' => 'wysiwyg-dialog-page', |
|
70 | + 'arguments' => array('content' => NULL, 'show_messages' => TRUE), |
|
71 | + 'file' => 'wysiwyg.dialog.inc', |
|
72 | + 'template' => 'wysiwyg-dialog-page', |
|
73 | 73 | ), |
74 | - ); |
|
74 | + ); |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | /** |
78 | 78 | * Implementation of hook_help(). |
79 | 79 | */ |
80 | 80 | function wysiwyg_help($path, $arg) { |
81 | - switch ($path) { |
|
81 | + switch ($path) { |
|
82 | 82 | case 'admin/settings/wysiwyg': |
83 | 83 | $output = '<p>' . t('A Wysiwyg profile is associated with an input format. A Wysiwyg profile defines which client-side editor is loaded with a particular input format, what buttons or themes are enabled for the editor, how the editor is displayed, and a few other editor-specific functions.') . '</p>'; |
84 | - return $output; |
|
85 | - } |
|
84 | + return $output; |
|
85 | + } |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | /** |
89 | 89 | * Clear wysiwyg cache on admin/build/modules form. |
90 | 90 | */ |
91 | 91 | function wysiwyg_form_system_modules_alter(&$form, $form_state) { |
92 | - wysiwyg_profile_load_all(TRUE); |
|
92 | + wysiwyg_profile_load_all(TRUE); |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | /** |
@@ -104,11 +104,11 @@ discard block |
||
104 | 104 | * @see wysiwyg_process_form() |
105 | 105 | */ |
106 | 106 | function wysiwyg_form_alter(&$form, &$form_state) { |
107 | - $form['#after_build'][] = 'wysiwyg_process_form'; |
|
108 | - // Teaser splitter is unconditionally removed and NOT supported. |
|
109 | - if (isset($form['body_field'])) { |
|
107 | + $form['#after_build'][] = 'wysiwyg_process_form'; |
|
108 | + // Teaser splitter is unconditionally removed and NOT supported. |
|
109 | + if (isset($form['body_field'])) { |
|
110 | 110 | unset($form['body_field']['teaser_js']); |
111 | - } |
|
111 | + } |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | /** |
@@ -123,53 +123,53 @@ discard block |
||
123 | 123 | * @see wysiwyg_elements(), filter_form() |
124 | 124 | */ |
125 | 125 | function wysiwyg_process_form(&$form) { |
126 | - // Iterate over element children; resetting array keys to access last index. |
|
127 | - if ($children = array_values(element_children($form))) { |
|
126 | + // Iterate over element children; resetting array keys to access last index. |
|
127 | + if ($children = array_values(element_children($form))) { |
|
128 | 128 | foreach ($children as $index => $item) { |
129 | - $element = &$form[$item]; |
|
129 | + $element = &$form[$item]; |
|
130 | 130 | |
131 | - // filter_form() always uses the key 'format'. We need a type-agnostic |
|
132 | - // match to prevent false positives. Also, there must have been at least |
|
133 | - // one element on this level. |
|
134 | - if (($item === 'format' || $item === 'signature_format') && $index > 0) { |
|
131 | + // filter_form() always uses the key 'format'. We need a type-agnostic |
|
132 | + // match to prevent false positives. Also, there must have been at least |
|
133 | + // one element on this level. |
|
134 | + if (($item === 'format' || $item === 'signature_format') && $index > 0) { |
|
135 | 135 | // Make sure we either match a input format selector or input format |
136 | 136 | // guidelines (displayed if user has access to one input format only). |
137 | 137 | if ((isset($element['#type']) && $element['#type'] == 'fieldset') || isset($element['format']['guidelines'])) { |
138 | - // The element before this element is the target form field. |
|
139 | - $field = &$form[$children[$index - 1]]; |
|
138 | + // The element before this element is the target form field. |
|
139 | + $field = &$form[$children[$index - 1]]; |
|
140 | 140 | |
141 | - // Allow modules to programmatically enforce no client-side editor by |
|
142 | - // setting the #wysiwyg property to FALSE. |
|
143 | - if (isset($field['#wysiwyg']) && !$field['#wysiwyg']) { |
|
141 | + // Allow modules to programmatically enforce no client-side editor by |
|
142 | + // setting the #wysiwyg property to FALSE. |
|
143 | + if (isset($field['#wysiwyg']) && !$field['#wysiwyg']) { |
|
144 | 144 | // A 'format' element should not have any child elements that may |
145 | 145 | // need processing, so it should be safe to skip the recursion that |
146 | 146 | // happens at the end of this function, and move on to the next |
147 | 147 | // element on the same level. |
148 | 148 | continue; |
149 | - } |
|
150 | - |
|
151 | - // If this textarea is #resizable and we will load at least one |
|
152 | - // editor, then only load the behavior and let the 'none' editor |
|
153 | - // attach/detach it to avoid hi-jacking the UI. Due to our CSS class |
|
154 | - // parsing, we can add arbitrary parameters for each input format. |
|
155 | - // The #resizable property will be removed below, if at least one |
|
156 | - // profile has been loaded. |
|
157 | - $extra_class = ''; |
|
158 | - if (!empty($field['#resizable'])) { |
|
149 | + } |
|
150 | + |
|
151 | + // If this textarea is #resizable and we will load at least one |
|
152 | + // editor, then only load the behavior and let the 'none' editor |
|
153 | + // attach/detach it to avoid hi-jacking the UI. Due to our CSS class |
|
154 | + // parsing, we can add arbitrary parameters for each input format. |
|
155 | + // The #resizable property will be removed below, if at least one |
|
156 | + // profile has been loaded. |
|
157 | + $extra_class = ''; |
|
158 | + if (!empty($field['#resizable'])) { |
|
159 | 159 | $extra_class = ' wysiwyg-resizable-1'; |
160 | 160 | drupal_add_js('misc/textarea.js'); |
161 | - } |
|
162 | - |
|
163 | - // Determine the available input formats. The last child element is a |
|
164 | - // link to "More information about formatting options". When only one |
|
165 | - // input format is displayed, we also have to remove formatting |
|
166 | - // guidelines, stored in the child 'format'. |
|
167 | - $formats = element_children($element); |
|
168 | - array_pop($formats); |
|
169 | - if (($key = array_search('format', $formats)) !== FALSE) { |
|
161 | + } |
|
162 | + |
|
163 | + // Determine the available input formats. The last child element is a |
|
164 | + // link to "More information about formatting options". When only one |
|
165 | + // input format is displayed, we also have to remove formatting |
|
166 | + // guidelines, stored in the child 'format'. |
|
167 | + $formats = element_children($element); |
|
168 | + array_pop($formats); |
|
169 | + if (($key = array_search('format', $formats)) !== FALSE) { |
|
170 | 170 | unset($formats[$key]); |
171 | - } |
|
172 | - foreach ($formats as $format) { |
|
171 | + } |
|
172 | + foreach ($formats as $format) { |
|
173 | 173 | // Default to 'none' editor (Drupal's default behaviors). |
174 | 174 | $editor = 'none'; |
175 | 175 | $status = 1; |
@@ -177,51 +177,51 @@ discard block |
||
177 | 177 | // Fetch the profile associated to this input format. |
178 | 178 | $profile = wysiwyg_get_profile($format); |
179 | 179 | if ($profile) { |
180 | - $loaded = TRUE; |
|
181 | - $editor = $profile->editor; |
|
182 | - $status = (int) wysiwyg_user_get_status($profile); |
|
183 | - if (isset($profile->settings['show_toggle'])) { |
|
180 | + $loaded = TRUE; |
|
181 | + $editor = $profile->editor; |
|
182 | + $status = (int) wysiwyg_user_get_status($profile); |
|
183 | + if (isset($profile->settings['show_toggle'])) { |
|
184 | 184 | $toggle = (int) $profile->settings['show_toggle']; |
185 | - } |
|
186 | - // Check editor theme (and reset it if not/no longer available). |
|
187 | - $theme = wysiwyg_get_editor_themes($profile, (isset($profile->settings['theme']) ? $profile->settings['theme'] : '')); |
|
188 | - |
|
189 | - // Add plugin settings (first) for this input format. |
|
190 | - wysiwyg_add_plugin_settings($profile); |
|
191 | - // Add profile settings for this input format. |
|
192 | - wysiwyg_add_editor_settings($profile, $theme); |
|
185 | + } |
|
186 | + // Check editor theme (and reset it if not/no longer available). |
|
187 | + $theme = wysiwyg_get_editor_themes($profile, (isset($profile->settings['theme']) ? $profile->settings['theme'] : '')); |
|
188 | + |
|
189 | + // Add plugin settings (first) for this input format. |
|
190 | + wysiwyg_add_plugin_settings($profile); |
|
191 | + // Add profile settings for this input format. |
|
192 | + wysiwyg_add_editor_settings($profile, $theme); |
|
193 | 193 | } |
194 | 194 | |
195 | 195 | // Use a prefix/suffix for a single input format, or attach to input |
196 | 196 | // format selector radio buttons. |
197 | 197 | if (isset($element['format']['guidelines'])) { |
198 | - $element['format']['guidelines']['#prefix'] = '<div class="wysiwyg wysiwyg-format-' . $format . ' wysiwyg-editor-' . $editor . ' wysiwyg-field-' . $field['#id'] . ' wysiwyg-status-' . $status . ' wysiwyg-toggle-' . $toggle . $extra_class . '">'; |
|
199 | - $element['format']['guidelines']['#suffix'] = '</div>'; |
|
200 | - // Edge-case: Default format contains no input filters. |
|
201 | - if (empty($element['format']['guidelines']['#value'])) { |
|
198 | + $element['format']['guidelines']['#prefix'] = '<div class="wysiwyg wysiwyg-format-' . $format . ' wysiwyg-editor-' . $editor . ' wysiwyg-field-' . $field['#id'] . ' wysiwyg-status-' . $status . ' wysiwyg-toggle-' . $toggle . $extra_class . '">'; |
|
199 | + $element['format']['guidelines']['#suffix'] = '</div>'; |
|
200 | + // Edge-case: Default format contains no input filters. |
|
201 | + if (empty($element['format']['guidelines']['#value'])) { |
|
202 | 202 | $element['format']['guidelines']['#value'] = ' '; |
203 | - } |
|
203 | + } |
|
204 | 204 | } |
205 | 205 | else { |
206 | - $element[$format]['#attributes']['class'] = (isset($element[$format]['#attributes']['class']) ? $element[$format]['#attributes']['class'] . ' ' : ''); |
|
207 | - $element[$format]['#attributes']['class'] .= 'wysiwyg wysiwyg-format-' . $format . ' wysiwyg-editor-' . $editor . ' wysiwyg-field-' . $field['#id'] . ' wysiwyg-status-' . $status . ' wysiwyg-toggle-' . $toggle . $extra_class; |
|
206 | + $element[$format]['#attributes']['class'] = (isset($element[$format]['#attributes']['class']) ? $element[$format]['#attributes']['class'] . ' ' : ''); |
|
207 | + $element[$format]['#attributes']['class'] .= 'wysiwyg wysiwyg-format-' . $format . ' wysiwyg-editor-' . $editor . ' wysiwyg-field-' . $field['#id'] . ' wysiwyg-status-' . $status . ' wysiwyg-toggle-' . $toggle . $extra_class; |
|
208 | + } |
|
208 | 209 | } |
209 | - } |
|
210 | 210 | |
211 | - // If we loaded at least one editor, then the 'none' editor will |
|
212 | - // handle resizable textareas instead of core. |
|
213 | - if (isset($loaded) && !empty($field['#resizable'])) { |
|
211 | + // If we loaded at least one editor, then the 'none' editor will |
|
212 | + // handle resizable textareas instead of core. |
|
213 | + if (isset($loaded) && !empty($field['#resizable'])) { |
|
214 | 214 | $field['#resizable'] = FALSE; |
215 | - } |
|
215 | + } |
|
216 | 216 | } |
217 | 217 | // If this element is 'format', do not recurse further. |
218 | 218 | continue; |
219 | - } |
|
220 | - // Recurse into children. |
|
221 | - wysiwyg_process_form($element); |
|
219 | + } |
|
220 | + // Recurse into children. |
|
221 | + wysiwyg_process_form($element); |
|
222 | + } |
|
222 | 223 | } |
223 | - } |
|
224 | - return $form; |
|
224 | + return $form; |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | /** |
@@ -239,12 +239,12 @@ discard block |
||
239 | 239 | * @see wysiwyg_load_editor(), wysiwyg_get_editor() |
240 | 240 | */ |
241 | 241 | function wysiwyg_get_profile($format) { |
242 | - if ($profile = wysiwyg_profile_load($format)) { |
|
242 | + if ($profile = wysiwyg_profile_load($format)) { |
|
243 | 243 | if (wysiwyg_load_editor($profile)) { |
244 | - return $profile; |
|
244 | + return $profile; |
|
245 | + } |
|
245 | 246 | } |
246 | - } |
|
247 | - return FALSE; |
|
247 | + return FALSE; |
|
248 | 248 | } |
249 | 249 | |
250 | 250 | /** |
@@ -259,82 +259,82 @@ discard block |
||
259 | 259 | * @see wysiwyg_get_profile() |
260 | 260 | */ |
261 | 261 | function wysiwyg_load_editor($profile) { |
262 | - static $settings_added; |
|
263 | - static $loaded = array(); |
|
262 | + static $settings_added; |
|
263 | + static $loaded = array(); |
|
264 | 264 | |
265 | - $name = $profile->editor; |
|
266 | - // Library files must be loaded only once. |
|
267 | - if (!isset($loaded[$name])) { |
|
265 | + $name = $profile->editor; |
|
266 | + // Library files must be loaded only once. |
|
267 | + if (!isset($loaded[$name])) { |
|
268 | 268 | // Load editor. |
269 | 269 | $editor = wysiwyg_get_editor($name); |
270 | 270 | if ($editor) { |
271 | - // Determine library files to load. |
|
272 | - // @todo Allow to configure the library/execMode to use. |
|
273 | - if (isset($profile->settings['library']) && isset($editor['libraries'][$profile->settings['library']])) { |
|
271 | + // Determine library files to load. |
|
272 | + // @todo Allow to configure the library/execMode to use. |
|
273 | + if (isset($profile->settings['library']) && isset($editor['libraries'][$profile->settings['library']])) { |
|
274 | 274 | $library = $profile->settings['library']; |
275 | 275 | $files = $editor['libraries'][$library]['files']; |
276 | - } |
|
277 | - else { |
|
276 | + } |
|
277 | + else { |
|
278 | 278 | // Fallback to the first defined library by default (external libraries can change). |
279 | 279 | $library = key($editor['libraries']); |
280 | 280 | $files = array_shift($editor['libraries']); |
281 | 281 | $files = $files['files']; |
282 | - } |
|
283 | - foreach ($files as $file => $options) { |
|
282 | + } |
|
283 | + foreach ($files as $file => $options) { |
|
284 | 284 | if (is_array($options)) { |
285 | - $options += array('type' => 'module', 'scope' => 'header', 'defer' => FALSE, 'cache' => TRUE, 'preprocess' => TRUE); |
|
286 | - drupal_add_js($editor['library path'] . '/' . $file, $options['type'], $options['scope'], $options['defer'], $options['cache'], $options['preprocess']); |
|
285 | + $options += array('type' => 'module', 'scope' => 'header', 'defer' => FALSE, 'cache' => TRUE, 'preprocess' => TRUE); |
|
286 | + drupal_add_js($editor['library path'] . '/' . $file, $options['type'], $options['scope'], $options['defer'], $options['cache'], $options['preprocess']); |
|
287 | 287 | } |
288 | 288 | else { |
289 | - drupal_add_js($editor['library path'] . '/' . $options); |
|
289 | + drupal_add_js($editor['library path'] . '/' . $options); |
|
290 | 290 | } |
291 | - } |
|
292 | - // If editor defines an additional load callback, invoke it. |
|
293 | - // @todo Isn't the settings callback sufficient? |
|
294 | - if (isset($editor['load callback']) && function_exists($editor['load callback'])) { |
|
291 | + } |
|
292 | + // If editor defines an additional load callback, invoke it. |
|
293 | + // @todo Isn't the settings callback sufficient? |
|
294 | + if (isset($editor['load callback']) && function_exists($editor['load callback'])) { |
|
295 | 295 | $editor['load callback']($editor, $library); |
296 | - } |
|
297 | - // Load JavaScript integration files for this editor. |
|
298 | - $files = array(); |
|
299 | - if (isset($editor['js files'])) { |
|
296 | + } |
|
297 | + // Load JavaScript integration files for this editor. |
|
298 | + $files = array(); |
|
299 | + if (isset($editor['js files'])) { |
|
300 | 300 | $files = $editor['js files']; |
301 | - } |
|
302 | - foreach ($files as $file) { |
|
301 | + } |
|
302 | + foreach ($files as $file) { |
|
303 | 303 | drupal_add_js($editor['js path'] . '/' . $file); |
304 | - } |
|
305 | - // Load CSS stylesheets for this editor. |
|
306 | - $files = array(); |
|
307 | - if (isset($editor['css files'])) { |
|
304 | + } |
|
305 | + // Load CSS stylesheets for this editor. |
|
306 | + $files = array(); |
|
307 | + if (isset($editor['css files'])) { |
|
308 | 308 | $files = $editor['css files']; |
309 | - } |
|
310 | - foreach ($files as $file) { |
|
309 | + } |
|
310 | + foreach ($files as $file) { |
|
311 | 311 | drupal_add_css($editor['css path'] . '/' . $file); |
312 | - } |
|
312 | + } |
|
313 | 313 | |
314 | - drupal_add_js(array('wysiwyg' => array( |
|
314 | + drupal_add_js(array('wysiwyg' => array( |
|
315 | 315 | 'configs' => array($editor['name'] => array('global' => array( |
316 | - // @todo Move into (global) editor settings. |
|
317 | - // If JS compression is enabled, at least TinyMCE is unable to determine |
|
318 | - // its own base path and exec mode since it can't find the script name. |
|
319 | - 'editorBasePath' => base_path() . $editor['library path'], |
|
320 | - 'execMode' => $library, |
|
316 | + // @todo Move into (global) editor settings. |
|
317 | + // If JS compression is enabled, at least TinyMCE is unable to determine |
|
318 | + // its own base path and exec mode since it can't find the script name. |
|
319 | + 'editorBasePath' => base_path() . $editor['library path'], |
|
320 | + 'execMode' => $library, |
|
321 | 321 | ))), |
322 | - )), 'setting'); |
|
322 | + )), 'setting'); |
|
323 | 323 | |
324 | - $loaded[$name] = TRUE; |
|
324 | + $loaded[$name] = TRUE; |
|
325 | 325 | } |
326 | 326 | else { |
327 | - $loaded[$name] = FALSE; |
|
327 | + $loaded[$name] = FALSE; |
|
328 | + } |
|
328 | 329 | } |
329 | - } |
|
330 | 330 | |
331 | - // Add basic Wysiwyg settings if any editor has been added. |
|
332 | - if (!isset($settings_added) && $loaded[$name]) { |
|
331 | + // Add basic Wysiwyg settings if any editor has been added. |
|
332 | + if (!isset($settings_added) && $loaded[$name]) { |
|
333 | 333 | drupal_add_js(array('wysiwyg' => array( |
334 | - 'configs' => array(), |
|
335 | - 'plugins' => array(), |
|
336 | - 'disable' => t('Disable rich-text'), |
|
337 | - 'enable' => t('Enable rich-text'), |
|
334 | + 'configs' => array(), |
|
335 | + 'plugins' => array(), |
|
336 | + 'disable' => t('Disable rich-text'), |
|
337 | + 'enable' => t('Enable rich-text'), |
|
338 | 338 | )), 'setting'); |
339 | 339 | |
340 | 340 | $path = drupal_get_path('module', 'wysiwyg'); |
@@ -355,26 +355,26 @@ discard block |
||
355 | 355 | drupal_add_js($path . '/wysiwyg.js', 'module', 'footer'); |
356 | 356 | |
357 | 357 | $settings_added = TRUE; |
358 | - } |
|
358 | + } |
|
359 | 359 | |
360 | - return $loaded[$name]; |
|
360 | + return $loaded[$name]; |
|
361 | 361 | } |
362 | 362 | |
363 | 363 | /** |
364 | 364 | * Add editor settings for a given input format. |
365 | 365 | */ |
366 | 366 | function wysiwyg_add_editor_settings($profile, $theme) { |
367 | - static $formats = array(); |
|
367 | + static $formats = array(); |
|
368 | 368 | |
369 | - if (!isset($formats[$profile->format])) { |
|
369 | + if (!isset($formats[$profile->format])) { |
|
370 | 370 | $config = wysiwyg_get_editor_config($profile, $theme); |
371 | 371 | // drupal_to_js() does not properly convert numeric array keys, so we need |
372 | 372 | // to use a string instead of the format id. |
373 | 373 | if ($config) { |
374 | - drupal_add_js(array('wysiwyg' => array('configs' => array($profile->editor => array('format' . $profile->format => $config)))), 'setting'); |
|
374 | + drupal_add_js(array('wysiwyg' => array('configs' => array($profile->editor => array('format' . $profile->format => $config)))), 'setting'); |
|
375 | 375 | } |
376 | 376 | $formats[$profile->format] = TRUE; |
377 | - } |
|
377 | + } |
|
378 | 378 | } |
379 | 379 | |
380 | 380 | /** |
@@ -402,86 +402,86 @@ discard block |
||
402 | 402 | * and simplify this entire function. |
403 | 403 | */ |
404 | 404 | function wysiwyg_add_plugin_settings($profile) { |
405 | - static $plugins = array(); |
|
406 | - static $processed_plugins = array(); |
|
407 | - static $processed_formats = array(); |
|
405 | + static $plugins = array(); |
|
406 | + static $processed_plugins = array(); |
|
407 | + static $processed_formats = array(); |
|
408 | 408 | |
409 | - // Each input format must only processed once. |
|
410 | - // @todo ...as long as we do not have multiple profiles per format. |
|
411 | - if (isset($processed_formats[$profile->format])) { |
|
409 | + // Each input format must only processed once. |
|
410 | + // @todo ...as long as we do not have multiple profiles per format. |
|
411 | + if (isset($processed_formats[$profile->format])) { |
|
412 | 412 | return; |
413 | - } |
|
414 | - $processed_formats[$profile->format] = TRUE; |
|
413 | + } |
|
414 | + $processed_formats[$profile->format] = TRUE; |
|
415 | 415 | |
416 | - $editor = wysiwyg_get_editor($profile->editor); |
|
416 | + $editor = wysiwyg_get_editor($profile->editor); |
|
417 | 417 | |
418 | - // Collect native plugins for this editor provided via hook_wysiwyg_plugin() |
|
419 | - // and Drupal plugins provided via hook_wysiwyg_include_directory(). |
|
420 | - if (!array_key_exists($editor['name'], $plugins)) { |
|
418 | + // Collect native plugins for this editor provided via hook_wysiwyg_plugin() |
|
419 | + // and Drupal plugins provided via hook_wysiwyg_include_directory(). |
|
420 | + if (!array_key_exists($editor['name'], $plugins)) { |
|
421 | 421 | $plugins[$editor['name']] = wysiwyg_get_plugins($editor['name']); |
422 | - } |
|
422 | + } |
|
423 | 423 | |
424 | - // Nothing to do, if there are no plugins. |
|
425 | - if (empty($plugins[$editor['name']])) { |
|
424 | + // Nothing to do, if there are no plugins. |
|
425 | + if (empty($plugins[$editor['name']])) { |
|
426 | 426 | return; |
427 | - } |
|
427 | + } |
|
428 | 428 | |
429 | - // Determine name of proxy plugin for Drupal plugins. |
|
430 | - $proxy = (isset($editor['proxy plugin']) ? key($editor['proxy plugin']) : ''); |
|
429 | + // Determine name of proxy plugin for Drupal plugins. |
|
430 | + $proxy = (isset($editor['proxy plugin']) ? key($editor['proxy plugin']) : ''); |
|
431 | 431 | |
432 | - // Process native editor plugins. |
|
433 | - if (isset($editor['plugin settings callback'])) { |
|
432 | + // Process native editor plugins. |
|
433 | + if (isset($editor['plugin settings callback'])) { |
|
434 | 434 | // @todo Require PHP 5.1 in 3.x and use array_intersect_key(). |
435 | 435 | $profile_plugins_native = array(); |
436 | 436 | foreach ($plugins[$editor['name']] as $plugin => $meta) { |
437 | - // Skip Drupal plugins (handled below). |
|
438 | - if ($plugin === $proxy) { |
|
437 | + // Skip Drupal plugins (handled below). |
|
438 | + if ($plugin === $proxy) { |
|
439 | 439 | continue; |
440 | - } |
|
441 | - // Only keep native plugins that are enabled in this profile. |
|
442 | - if (isset($profile->settings['buttons'][$plugin])) { |
|
440 | + } |
|
441 | + // Only keep native plugins that are enabled in this profile. |
|
442 | + if (isset($profile->settings['buttons'][$plugin])) { |
|
443 | 443 | $profile_plugins_native[$plugin] = $meta; |
444 | - } |
|
444 | + } |
|
445 | 445 | } |
446 | 446 | // Invoke the editor's plugin settings callback, so it can populate the |
447 | 447 | // settings for native external plugins with required values. |
448 | 448 | $settings_native = call_user_func($editor['plugin settings callback'], $editor, $profile, $profile_plugins_native); |
449 | 449 | |
450 | 450 | if ($settings_native) { |
451 | - drupal_add_js(array('wysiwyg' => array('plugins' => array('format' . $profile->format => array('native' => $settings_native)))), 'setting'); |
|
451 | + drupal_add_js(array('wysiwyg' => array('plugins' => array('format' . $profile->format => array('native' => $settings_native)))), 'setting'); |
|
452 | + } |
|
452 | 453 | } |
453 | - } |
|
454 | 454 | |
455 | - // Process Drupal plugins. |
|
456 | - if ($proxy && isset($editor['proxy plugin settings callback'])) { |
|
455 | + // Process Drupal plugins. |
|
456 | + if ($proxy && isset($editor['proxy plugin settings callback'])) { |
|
457 | 457 | $profile_plugins_drupal = array(); |
458 | 458 | foreach (wysiwyg_get_all_plugins() as $plugin => $meta) { |
459 | - if (isset($profile->settings['buttons'][$proxy][$plugin])) { |
|
459 | + if (isset($profile->settings['buttons'][$proxy][$plugin])) { |
|
460 | 460 | // JavaScript and plugin-specific settings for Drupal plugins must be |
461 | 461 | // loaded and processed only once. Plugin information is cached |
462 | 462 | // statically to pass it to the editor's proxy plugin settings callback. |
463 | 463 | if (!isset($processed_plugins[$proxy][$plugin])) { |
464 | - $profile_plugins_drupal[$plugin] = $processed_plugins[$proxy][$plugin] = $meta; |
|
465 | - // Load the Drupal plugin's JavaScript. |
|
466 | - drupal_add_js($meta['js path'] . '/' . $meta['js file']); |
|
467 | - // Add plugin-specific settings. |
|
468 | - if (isset($meta['settings'])) { |
|
464 | + $profile_plugins_drupal[$plugin] = $processed_plugins[$proxy][$plugin] = $meta; |
|
465 | + // Load the Drupal plugin's JavaScript. |
|
466 | + drupal_add_js($meta['js path'] . '/' . $meta['js file']); |
|
467 | + // Add plugin-specific settings. |
|
468 | + if (isset($meta['settings'])) { |
|
469 | 469 | drupal_add_js(array('wysiwyg' => array('plugins' => array('drupal' => array($plugin => $meta['settings'])))), 'setting'); |
470 | - } |
|
470 | + } |
|
471 | 471 | } |
472 | 472 | else { |
473 | - $profile_plugins_drupal[$plugin] = $processed_plugins[$proxy][$plugin]; |
|
473 | + $profile_plugins_drupal[$plugin] = $processed_plugins[$proxy][$plugin]; |
|
474 | + } |
|
474 | 475 | } |
475 | - } |
|
476 | 476 | } |
477 | 477 | // Invoke the editor's proxy plugin settings callback, so it can populate |
478 | 478 | // the settings for Drupal plugins with custom, required values. |
479 | 479 | $settings_drupal = call_user_func($editor['proxy plugin settings callback'], $editor, $profile, $profile_plugins_drupal); |
480 | 480 | |
481 | 481 | if ($settings_drupal) { |
482 | - drupal_add_js(array('wysiwyg' => array('plugins' => array('format' . $profile->format => array('drupal' => $settings_drupal)))), 'setting'); |
|
482 | + drupal_add_js(array('wysiwyg' => array('plugins' => array('format' . $profile->format => array('drupal' => $settings_drupal)))), 'setting'); |
|
483 | + } |
|
483 | 484 | } |
484 | - } |
|
485 | 485 | } |
486 | 486 | |
487 | 487 | /** |
@@ -499,28 +499,28 @@ discard block |
||
499 | 499 | * was given. |
500 | 500 | */ |
501 | 501 | function wysiwyg_get_editor_themes(&$profile, $selected_theme = NULL) { |
502 | - static $themes = array(); |
|
502 | + static $themes = array(); |
|
503 | 503 | |
504 | - if (!isset($themes[$profile->editor])) { |
|
504 | + if (!isset($themes[$profile->editor])) { |
|
505 | 505 | $editor = wysiwyg_get_editor($profile->editor); |
506 | 506 | if (isset($editor['themes callback']) && function_exists($editor['themes callback'])) { |
507 | - $themes[$editor['name']] = $editor['themes callback']($editor, $profile); |
|
507 | + $themes[$editor['name']] = $editor['themes callback']($editor, $profile); |
|
508 | 508 | } |
509 | 509 | // Fallback to 'default' otherwise. |
510 | 510 | else { |
511 | - $themes[$editor['name']] = array('default'); |
|
511 | + $themes[$editor['name']] = array('default'); |
|
512 | + } |
|
512 | 513 | } |
513 | - } |
|
514 | 514 | |
515 | - // Check optional $selected_theme argument, if given. |
|
516 | - if (isset($selected_theme)) { |
|
515 | + // Check optional $selected_theme argument, if given. |
|
516 | + if (isset($selected_theme)) { |
|
517 | 517 | // If the passed theme name does not exist, use the first available. |
518 | 518 | if (!in_array($selected_theme, $themes[$profile->editor])) { |
519 | - $selected_theme = $profile->settings['theme'] = $themes[$profile->editor][0]; |
|
519 | + $selected_theme = $profile->settings['theme'] = $themes[$profile->editor][0]; |
|
520 | + } |
|
520 | 521 | } |
521 | - } |
|
522 | 522 | |
523 | - return isset($selected_theme) ? $selected_theme : $themes[$profile->editor]; |
|
523 | + return isset($selected_theme) ? $selected_theme : $themes[$profile->editor]; |
|
524 | 524 | } |
525 | 525 | |
526 | 526 | /** |
@@ -533,42 +533,42 @@ discard block |
||
533 | 533 | * An array for each plugin. |
534 | 534 | */ |
535 | 535 | function wysiwyg_get_plugins($editor_name) { |
536 | - $plugins = array(); |
|
537 | - if (!empty($editor_name)) { |
|
536 | + $plugins = array(); |
|
537 | + if (!empty($editor_name)) { |
|
538 | 538 | $editor = wysiwyg_get_editor($editor_name); |
539 | 539 | // Add internal editor plugins. |
540 | 540 | if (isset($editor['plugin callback']) && function_exists($editor['plugin callback'])) { |
541 | - $plugins = $editor['plugin callback']($editor); |
|
541 | + $plugins = $editor['plugin callback']($editor); |
|
542 | 542 | } |
543 | 543 | // Add editor plugins provided via hook_wysiwyg_plugin(). |
544 | 544 | $plugins = array_merge($plugins, module_invoke_all('wysiwyg_plugin', $editor['name'], $editor['installed version'])); |
545 | 545 | // Add API plugins provided by Drupal modules. |
546 | 546 | // @todo We need to pass the filepath to the plugin icon for Drupal plugins. |
547 | 547 | if (isset($editor['proxy plugin'])) { |
548 | - $plugins += $editor['proxy plugin']; |
|
549 | - $proxy = key($editor['proxy plugin']); |
|
550 | - foreach (wysiwyg_get_all_plugins() as $plugin_name => $info) { |
|
548 | + $plugins += $editor['proxy plugin']; |
|
549 | + $proxy = key($editor['proxy plugin']); |
|
550 | + foreach (wysiwyg_get_all_plugins() as $plugin_name => $info) { |
|
551 | 551 | $plugins[$proxy]['buttons'][$plugin_name] = $info['title']; |
552 | - } |
|
552 | + } |
|
553 | + } |
|
553 | 554 | } |
554 | - } |
|
555 | - return $plugins; |
|
555 | + return $plugins; |
|
556 | 556 | } |
557 | 557 | |
558 | 558 | /** |
559 | 559 | * Return an array of initial editor settings for a Wysiwyg profile. |
560 | 560 | */ |
561 | 561 | function wysiwyg_get_editor_config($profile, $theme) { |
562 | - $editor = wysiwyg_get_editor($profile->editor); |
|
563 | - $settings = array(); |
|
564 | - if (!empty($editor['settings callback']) && function_exists($editor['settings callback'])) { |
|
562 | + $editor = wysiwyg_get_editor($profile->editor); |
|
563 | + $settings = array(); |
|
564 | + if (!empty($editor['settings callback']) && function_exists($editor['settings callback'])) { |
|
565 | 565 | $settings = $editor['settings callback']($editor, $profile->settings, $theme); |
566 | 566 | |
567 | 567 | // Allow other modules to alter the editor settings for this format. |
568 | 568 | $context = array('editor' => $editor, 'profile' => $profile, 'theme' => $theme); |
569 | 569 | drupal_alter('wysiwyg_editor_settings', $settings, $context); |
570 | - } |
|
571 | - return $settings; |
|
570 | + } |
|
571 | + return $settings; |
|
572 | 572 | } |
573 | 573 | |
574 | 574 | /** |
@@ -581,106 +581,106 @@ discard block |
||
581 | 581 | * An array containing CSS files, including proper base path. |
582 | 582 | */ |
583 | 583 | function wysiwyg_get_css() { |
584 | - static $files; |
|
584 | + static $files; |
|
585 | 585 | |
586 | - if (isset($files)) { |
|
586 | + if (isset($files)) { |
|
587 | 587 | return $files; |
588 | - } |
|
589 | - // In node form previews, the theme has not been initialized yet. |
|
590 | - if (!empty($_POST)) { |
|
588 | + } |
|
589 | + // In node form previews, the theme has not been initialized yet. |
|
590 | + if (!empty($_POST)) { |
|
591 | 591 | init_theme(); |
592 | - } |
|
592 | + } |
|
593 | 593 | |
594 | - $files = array(); |
|
595 | - foreach (drupal_add_css() as $media => $css) { |
|
594 | + $files = array(); |
|
595 | + foreach (drupal_add_css() as $media => $css) { |
|
596 | 596 | if ($media != 'print') { |
597 | - foreach ($css['theme'] as $filepath => $preprocess) { |
|
597 | + foreach ($css['theme'] as $filepath => $preprocess) { |
|
598 | 598 | if (file_exists($filepath)) { |
599 | - $files[] = base_path() . $filepath; |
|
599 | + $files[] = base_path() . $filepath; |
|
600 | + } |
|
600 | 601 | } |
601 | - } |
|
602 | 602 | } |
603 | - } |
|
604 | - return $files; |
|
603 | + } |
|
604 | + return $files; |
|
605 | 605 | } |
606 | 606 | |
607 | 607 | /** |
608 | 608 | * Load profile for a given input format. |
609 | 609 | */ |
610 | 610 | function wysiwyg_profile_load($format) { |
611 | - static $profiles; |
|
611 | + static $profiles; |
|
612 | 612 | |
613 | - if (!isset($profiles) || !array_key_exists($format, $profiles)) { |
|
613 | + if (!isset($profiles) || !array_key_exists($format, $profiles)) { |
|
614 | 614 | $profiles = wysiwyg_profile_load_all(); |
615 | - } |
|
615 | + } |
|
616 | 616 | |
617 | - return (isset($profiles[$format]) ? $profiles[$format] : FALSE); |
|
617 | + return (isset($profiles[$format]) ? $profiles[$format] : FALSE); |
|
618 | 618 | } |
619 | 619 | |
620 | 620 | /** |
621 | 621 | * Load all profiles. |
622 | 622 | */ |
623 | 623 | function wysiwyg_profile_load_all($reset = FALSE) { |
624 | - static $profiles; |
|
624 | + static $profiles; |
|
625 | 625 | |
626 | - if ($reset || !isset($profiles)) { |
|
626 | + if ($reset || !isset($profiles)) { |
|
627 | 627 | $profiles = array(); |
628 | 628 | if (!$reset && ($cache = cache_get('wysiwyg:profiles', 'cache')) && is_array($cache->data)) { |
629 | - $profiles = $cache->data; |
|
630 | - return $profiles; |
|
629 | + $profiles = $cache->data; |
|
630 | + return $profiles; |
|
631 | 631 | } |
632 | 632 | // If Exportables and CTools are installed, use their API to load both |
633 | 633 | // wysiwyg profiles from code and from the database |
634 | 634 | if (module_exists('ctools') && module_exists('exportables')) { |
635 | - if (exportables_api_version('2.0') && ctools_api_version('1.7')) { |
|
635 | + if (exportables_api_version('2.0') && ctools_api_version('1.7')) { |
|
636 | 636 | $input_formats = exportables_load_all('input_formats'); |
637 | 637 | ctools_include('export'); |
638 | 638 | $ctools_profiles = ctools_export_load_object('wysiwyg'); |
639 | 639 | // Wysiwyg module still use numeric ids as keys |
640 | 640 | foreach ($ctools_profiles as $machine_name => $profile) { |
641 | - $profile->format = $input_formats[$machine_name]; |
|
642 | - $profiles[$profile->format] = $profile; |
|
641 | + $profile->format = $input_formats[$machine_name]; |
|
642 | + $profiles[$profile->format] = $profile; |
|
643 | + } |
|
643 | 644 | } |
644 | - } |
|
645 | 645 | } |
646 | 646 | |
647 | 647 | // DB profiles will always override Features profiles from flat files. |
648 | 648 | $result = db_query('SELECT format, editor, settings FROM {wysiwyg}'); |
649 | 649 | while ($profile = db_fetch_object($result)) { |
650 | - if (!isset($profiles[$profile->format])) { |
|
650 | + if (!isset($profiles[$profile->format])) { |
|
651 | 651 | $profile->settings = unserialize($profile->settings); |
652 | 652 | $profiles[$profile->format] = $profile; |
653 | - } |
|
653 | + } |
|
654 | 654 | } |
655 | 655 | |
656 | 656 | drupal_alter('wysiwyg_load_profiles', $profiles); |
657 | 657 | cache_set('wysiwyg:profiles', $profiles); |
658 | - } |
|
658 | + } |
|
659 | 659 | |
660 | - return $profiles; |
|
660 | + return $profiles; |
|
661 | 661 | } |
662 | - /** |
|
663 | - * Wysiwyg profiles list callback. |
|
664 | - */ |
|
662 | + /** |
|
663 | + * Wysiwyg profiles list callback. |
|
664 | + */ |
|
665 | 665 | function wysiwyg_profile_list() { |
666 | - $profiles = wysiwyg_profile_load_all(TRUE); |
|
667 | - $filter_formats = filter_formats(); |
|
668 | - $list = array(); |
|
669 | - foreach ($profiles as $profile) { |
|
666 | + $profiles = wysiwyg_profile_load_all(TRUE); |
|
667 | + $filter_formats = filter_formats(); |
|
668 | + $list = array(); |
|
669 | + foreach ($profiles as $profile) { |
|
670 | 670 | $list[$profile->machine] = t('@format (@editor)', array('@editor' => $profile->editor, '@format' => $filter_formats[$profile->format]->name)); |
671 | - } |
|
672 | - return $list; |
|
671 | + } |
|
672 | + return $list; |
|
673 | 673 | } |
674 | 674 | |
675 | 675 | /** |
676 | 676 | * Remove a profile from the database. |
677 | 677 | */ |
678 | 678 | function wysiwyg_profile_delete($wysiwyg) { |
679 | - if (!isset($wysiwyg->format)) { |
|
679 | + if (!isset($wysiwyg->format)) { |
|
680 | 680 | $input_formats = exportables_load_all('input_formats'); |
681 | 681 | $wysiwyg->format = $input_formats[$wysiwyg->machine]; |
682 | - } |
|
683 | - db_query("DELETE FROM {wysiwyg} WHERE format = %d", $wysiwyg->format); |
|
682 | + } |
|
683 | + db_query("DELETE FROM {wysiwyg} WHERE format = %d", $wysiwyg->format); |
|
684 | 684 | } |
685 | 685 | |
686 | 686 | |
@@ -689,68 +689,68 @@ discard block |
||
689 | 689 | * Implementation of hook_user(). |
690 | 690 | */ |
691 | 691 | function wysiwyg_user($op, &$edit, $account, $category = NULL) { |
692 | - if ($op == 'form' && $category == 'account') { |
|
692 | + if ($op == 'form' && $category == 'account') { |
|
693 | 693 | $user_formats = filter_formats(); |
694 | 694 | $options = array(); |
695 | 695 | $options_default = array(); |
696 | 696 | foreach (wysiwyg_profile_load_all() as $format => $profile) { |
697 | - // Only show profiles that have user_choose enabled. |
|
698 | - if (!empty($profile->settings['user_choose']) && isset($user_formats[$format])) { |
|
697 | + // Only show profiles that have user_choose enabled. |
|
698 | + if (!empty($profile->settings['user_choose']) && isset($user_formats[$format])) { |
|
699 | 699 | $options[$format] = check_plain($user_formats[$format]->name); |
700 | 700 | if (wysiwyg_user_get_status($profile, $account)) { |
701 | - $options_default[] = $format; |
|
701 | + $options_default[] = $format; |
|
702 | + } |
|
702 | 703 | } |
703 | - } |
|
704 | 704 | } |
705 | 705 | if (!empty($options)) { |
706 | - $form['wysiwyg']['wysiwyg_status'] = array( |
|
706 | + $form['wysiwyg']['wysiwyg_status'] = array( |
|
707 | 707 | '#type' => 'checkboxes', |
708 | 708 | '#title' => t('Text formats enabled for rich-text editing'), |
709 | 709 | '#options' => $options, |
710 | 710 | '#default_value' => $options_default, |
711 | - ); |
|
712 | - return $form; |
|
711 | + ); |
|
712 | + return $form; |
|
713 | 713 | } |
714 | - } |
|
715 | - elseif ($op == 'insert' || $op == 'update') { |
|
714 | + } |
|
715 | + elseif ($op == 'insert' || $op == 'update') { |
|
716 | 716 | if (isset($edit['wysiwyg_status'])) { |
717 | - db_query("DELETE FROM {wysiwyg_user} WHERE uid = %d", $account->uid); |
|
718 | - foreach ($edit['wysiwyg_status'] as $format => $status) { |
|
717 | + db_query("DELETE FROM {wysiwyg_user} WHERE uid = %d", $account->uid); |
|
718 | + foreach ($edit['wysiwyg_status'] as $format => $status) { |
|
719 | 719 | db_query("INSERT INTO {wysiwyg_user} (uid, format, status) VALUES (%d, %d, %d)", array( |
720 | - $account->uid, |
|
721 | - $format, |
|
722 | - (int) (bool) $status, |
|
720 | + $account->uid, |
|
721 | + $format, |
|
722 | + (int) (bool) $status, |
|
723 | 723 | )); |
724 | - } |
|
724 | + } |
|
725 | + } |
|
725 | 726 | } |
726 | - } |
|
727 | 727 | } |
728 | 728 | |
729 | 729 | function wysiwyg_user_get_status($profile, $account = NULL) { |
730 | - global $user; |
|
730 | + global $user; |
|
731 | 731 | |
732 | - if (!isset($account)) { |
|
732 | + if (!isset($account)) { |
|
733 | 733 | $account = $user; |
734 | - } |
|
734 | + } |
|
735 | 735 | |
736 | - // Default wysiwyg editor status information is only required on forms, so we |
|
737 | - // do not pre-emptively load and attach this information on every user_load(). |
|
738 | - if (!isset($account->wysiwyg_status)) { |
|
736 | + // Default wysiwyg editor status information is only required on forms, so we |
|
737 | + // do not pre-emptively load and attach this information on every user_load(). |
|
738 | + if (!isset($account->wysiwyg_status)) { |
|
739 | 739 | $account->wysiwyg_status = array(); |
740 | 740 | $result = db_query("SELECT format, status FROM {wysiwyg_user} WHERE uid = %d", $account->uid); |
741 | 741 | while ($row = db_fetch_object($result)) { |
742 | - $account->wysiwyg_status[$row->format] = $row->status; |
|
742 | + $account->wysiwyg_status[$row->format] = $row->status; |
|
743 | + } |
|
743 | 744 | } |
744 | - } |
|
745 | 745 | |
746 | - if (!empty($profile->settings['user_choose']) && isset($account->wysiwyg_status[$profile->format])) { |
|
746 | + if (!empty($profile->settings['user_choose']) && isset($account->wysiwyg_status[$profile->format])) { |
|
747 | 747 | $status = $account->wysiwyg_status[$profile->format]; |
748 | - } |
|
749 | - else { |
|
748 | + } |
|
749 | + else { |
|
750 | 750 | $status = isset($profile->settings['default']) ? $profile->settings['default'] : TRUE; |
751 | - } |
|
751 | + } |
|
752 | 752 | |
753 | - return (bool) $status; |
|
753 | + return (bool) $status; |
|
754 | 754 | } |
755 | 755 | |
756 | 756 | /** |
@@ -772,110 +772,110 @@ discard block |
||
772 | 772 | * installed properly. |
773 | 773 | */ |
774 | 774 | function wysiwyg_get_editor($name) { |
775 | - $editors = wysiwyg_get_all_editors(); |
|
776 | - return isset($editors[$name]) && $editors[$name]['installed'] ? $editors[$name] : FALSE; |
|
775 | + $editors = wysiwyg_get_all_editors(); |
|
776 | + return isset($editors[$name]) && $editors[$name]['installed'] ? $editors[$name] : FALSE; |
|
777 | 777 | } |
778 | 778 | |
779 | 779 | /** |
780 | 780 | * Compile a list holding all supported editors including installed editor version information. |
781 | 781 | */ |
782 | 782 | function wysiwyg_get_all_editors() { |
783 | - static $editors; |
|
783 | + static $editors; |
|
784 | 784 | |
785 | - if (isset($editors)) { |
|
785 | + if (isset($editors)) { |
|
786 | 786 | return $editors; |
787 | - } |
|
787 | + } |
|
788 | 788 | |
789 | - $editors = wysiwyg_load_includes('editors', 'editor'); |
|
790 | - foreach ($editors as $editor => $properties) { |
|
789 | + $editors = wysiwyg_load_includes('editors', 'editor'); |
|
790 | + foreach ($editors as $editor => $properties) { |
|
791 | 791 | // Fill in required properties. |
792 | 792 | $editors[$editor] += array( |
793 | - 'title' => '', |
|
794 | - 'vendor url' => '', |
|
795 | - 'download url' => '', |
|
796 | - 'editor path' => wysiwyg_get_path($editors[$editor]['name']), |
|
797 | - 'library path' => wysiwyg_get_path($editors[$editor]['name']), |
|
798 | - 'libraries' => array(), |
|
799 | - 'version callback' => NULL, |
|
800 | - 'themes callback' => NULL, |
|
801 | - 'settings callback' => NULL, |
|
802 | - 'plugin callback' => NULL, |
|
803 | - 'plugin settings callback' => NULL, |
|
804 | - 'versions' => array(), |
|
805 | - 'js path' => $editors[$editor]['path'] . '/js', |
|
806 | - 'css path' => $editors[$editor]['path'] . '/css', |
|
793 | + 'title' => '', |
|
794 | + 'vendor url' => '', |
|
795 | + 'download url' => '', |
|
796 | + 'editor path' => wysiwyg_get_path($editors[$editor]['name']), |
|
797 | + 'library path' => wysiwyg_get_path($editors[$editor]['name']), |
|
798 | + 'libraries' => array(), |
|
799 | + 'version callback' => NULL, |
|
800 | + 'themes callback' => NULL, |
|
801 | + 'settings callback' => NULL, |
|
802 | + 'plugin callback' => NULL, |
|
803 | + 'plugin settings callback' => NULL, |
|
804 | + 'versions' => array(), |
|
805 | + 'js path' => $editors[$editor]['path'] . '/js', |
|
806 | + 'css path' => $editors[$editor]['path'] . '/css', |
|
807 | 807 | ); |
808 | 808 | // Check whether library is present. |
809 | 809 | if (!($editors[$editor]['installed'] = file_exists($editors[$editor]['library path']))) { |
810 | - continue; |
|
810 | + continue; |
|
811 | 811 | } |
812 | 812 | // Detect library version. |
813 | 813 | if (function_exists($editors[$editor]['version callback'])) { |
814 | - $editors[$editor]['installed version'] = $editors[$editor]['version callback']($editors[$editor]); |
|
814 | + $editors[$editor]['installed version'] = $editors[$editor]['version callback']($editors[$editor]); |
|
815 | 815 | } |
816 | 816 | if (empty($editors[$editor]['installed version'])) { |
817 | - $editors[$editor]['error'] = t('The version of %editor could not be detected.', array('%editor' => $properties['title'])); |
|
818 | - $editors[$editor]['installed'] = FALSE; |
|
819 | - continue; |
|
817 | + $editors[$editor]['error'] = t('The version of %editor could not be detected.', array('%editor' => $properties['title'])); |
|
818 | + $editors[$editor]['installed'] = FALSE; |
|
819 | + continue; |
|
820 | 820 | } |
821 | 821 | // Determine to which supported version the installed version maps. |
822 | 822 | ksort($editors[$editor]['versions']); |
823 | 823 | $version = 0; |
824 | 824 | foreach ($editors[$editor]['versions'] as $supported_version => $version_properties) { |
825 | - if (version_compare($editors[$editor]['installed version'], $supported_version, '>=')) { |
|
825 | + if (version_compare($editors[$editor]['installed version'], $supported_version, '>=')) { |
|
826 | 826 | $version = $supported_version; |
827 | - } |
|
827 | + } |
|
828 | 828 | } |
829 | 829 | if (!$version) { |
830 | - $editors[$editor]['error'] = t('The installed version %version of %editor is not supported.', array('%version' => $editors[$editor]['installed version'], '%editor' => $editors[$editor]['title'])); |
|
831 | - $editors[$editor]['installed'] = FALSE; |
|
832 | - continue; |
|
830 | + $editors[$editor]['error'] = t('The installed version %version of %editor is not supported.', array('%version' => $editors[$editor]['installed version'], '%editor' => $editors[$editor]['title'])); |
|
831 | + $editors[$editor]['installed'] = FALSE; |
|
832 | + continue; |
|
833 | 833 | } |
834 | 834 | // Apply library version specific definitions and overrides. |
835 | 835 | $editors[$editor] = array_merge($editors[$editor], $editors[$editor]['versions'][$version]); |
836 | 836 | unset($editors[$editor]['versions']); |
837 | - } |
|
838 | - return $editors; |
|
837 | + } |
|
838 | + return $editors; |
|
839 | 839 | } |
840 | 840 | |
841 | 841 | /** |
842 | 842 | * Invoke hook_wysiwyg_plugin() in all modules. |
843 | 843 | */ |
844 | 844 | function wysiwyg_get_all_plugins() { |
845 | - static $plugins; |
|
845 | + static $plugins; |
|
846 | 846 | |
847 | - if (isset($plugins)) { |
|
847 | + if (isset($plugins)) { |
|
848 | 848 | return $plugins; |
849 | - } |
|
849 | + } |
|
850 | 850 | |
851 | - $plugins = wysiwyg_load_includes('plugins', 'plugin'); |
|
852 | - foreach ($plugins as $name => $properties) { |
|
851 | + $plugins = wysiwyg_load_includes('plugins', 'plugin'); |
|
852 | + foreach ($plugins as $name => $properties) { |
|
853 | 853 | $plugin = &$plugins[$name]; |
854 | 854 | // Fill in required/default properties. |
855 | 855 | $plugin += array( |
856 | - 'title' => $plugin['name'], |
|
857 | - 'vendor url' => '', |
|
858 | - 'js path' => $plugin['path'] . '/' . $plugin['name'], |
|
859 | - 'js file' => $plugin['name'] . '.js', |
|
860 | - 'css path' => $plugin['path'] . '/' . $plugin['name'], |
|
861 | - 'css file' => $plugin['name'] . '.css', |
|
862 | - 'icon path' => $plugin['path'] . '/' . $plugin['name'] . '/images', |
|
863 | - 'icon file' => $plugin['name'] . '.png', |
|
864 | - 'dialog path' => $plugin['name'], |
|
865 | - 'dialog settings' => array(), |
|
866 | - 'settings callback' => NULL, |
|
867 | - 'settings form callback' => NULL, |
|
856 | + 'title' => $plugin['name'], |
|
857 | + 'vendor url' => '', |
|
858 | + 'js path' => $plugin['path'] . '/' . $plugin['name'], |
|
859 | + 'js file' => $plugin['name'] . '.js', |
|
860 | + 'css path' => $plugin['path'] . '/' . $plugin['name'], |
|
861 | + 'css file' => $plugin['name'] . '.css', |
|
862 | + 'icon path' => $plugin['path'] . '/' . $plugin['name'] . '/images', |
|
863 | + 'icon file' => $plugin['name'] . '.png', |
|
864 | + 'dialog path' => $plugin['name'], |
|
865 | + 'dialog settings' => array(), |
|
866 | + 'settings callback' => NULL, |
|
867 | + 'settings form callback' => NULL, |
|
868 | 868 | ); |
869 | 869 | // Fill in default settings. |
870 | 870 | $plugin['settings'] += array( |
871 | - 'path' => base_path() . $plugin['path'] . '/' . $plugin['name'], |
|
871 | + 'path' => base_path() . $plugin['path'] . '/' . $plugin['name'], |
|
872 | 872 | ); |
873 | 873 | // Check whether library is present. |
874 | 874 | if (!($plugin['installed'] = file_exists($plugin['js path'] . '/' . $plugin['js file']))) { |
875 | - continue; |
|
875 | + continue; |
|
876 | + } |
|
876 | 877 | } |
877 | - } |
|
878 | - return $plugins; |
|
878 | + return $plugins; |
|
879 | 879 | } |
880 | 880 | |
881 | 881 | /** |
@@ -891,26 +891,26 @@ discard block |
||
891 | 891 | * @see wysiwyg_get_directories(), _wysiwyg_process_include() |
892 | 892 | */ |
893 | 893 | function wysiwyg_load_includes($type = 'editors', $hook = 'editor', $file = NULL) { |
894 | - // Determine implementations. |
|
895 | - $directories = wysiwyg_get_directories($type); |
|
896 | - $directories['wysiwyg'] = drupal_get_path('module', 'wysiwyg') . '/' . $type; |
|
897 | - $file_list = array(); |
|
898 | - foreach ($directories as $module => $path) { |
|
894 | + // Determine implementations. |
|
895 | + $directories = wysiwyg_get_directories($type); |
|
896 | + $directories['wysiwyg'] = drupal_get_path('module', 'wysiwyg') . '/' . $type; |
|
897 | + $file_list = array(); |
|
898 | + foreach ($directories as $module => $path) { |
|
899 | 899 | $file_list[$module] = drupal_system_listing("$file" . '.inc$', $path, 'name', 0); |
900 | - } |
|
900 | + } |
|
901 | 901 | |
902 | - // Load implementations. |
|
903 | - $info = array(); |
|
904 | - foreach (array_filter($file_list) as $module => $files) { |
|
902 | + // Load implementations. |
|
903 | + $info = array(); |
|
904 | + foreach (array_filter($file_list) as $module => $files) { |
|
905 | 905 | foreach ($files as $file) { |
906 | - include_once './' . $file->filename; |
|
907 | - $result = _wysiwyg_process_include($module, $module . '_' . $file->name, dirname($file->filename), $hook); |
|
908 | - if (is_array($result)) { |
|
906 | + include_once './' . $file->filename; |
|
907 | + $result = _wysiwyg_process_include($module, $module . '_' . $file->name, dirname($file->filename), $hook); |
|
908 | + if (is_array($result)) { |
|
909 | 909 | $info = array_merge($info, $result); |
910 | - } |
|
910 | + } |
|
911 | 911 | } |
912 | - } |
|
913 | - return $info; |
|
912 | + } |
|
913 | + return $info; |
|
914 | 914 | } |
915 | 915 | |
916 | 916 | /** |
@@ -927,20 +927,20 @@ discard block |
||
927 | 927 | * @ingroup libraries |
928 | 928 | */ |
929 | 929 | function wysiwyg_get_path($library, $base_path = FALSE) { |
930 | - static $libraries; |
|
930 | + static $libraries; |
|
931 | 931 | |
932 | - if (!isset($libraries)) { |
|
932 | + if (!isset($libraries)) { |
|
933 | 933 | $libraries = wysiwyg_get_libraries(); |
934 | - } |
|
935 | - if (!isset($libraries[$library])) { |
|
934 | + } |
|
935 | + if (!isset($libraries[$library])) { |
|
936 | 936 | // Most often, external libraries can be shared across multiple sites. |
937 | 937 | return 'sites/all/libraries/' . $library; |
938 | - } |
|
938 | + } |
|
939 | 939 | |
940 | - $path = ($base_path ? base_path() : ''); |
|
941 | - $path .= $libraries[$library]; |
|
940 | + $path = ($base_path ? base_path() : ''); |
|
941 | + $path .= $libraries[$library]; |
|
942 | 942 | |
943 | - return $path; |
|
943 | + return $path; |
|
944 | 944 | } |
945 | 945 | |
946 | 946 | /** |
@@ -960,55 +960,55 @@ discard block |
||
960 | 960 | * @ingroup libraries |
961 | 961 | */ |
962 | 962 | function wysiwyg_get_libraries() { |
963 | - global $profile; |
|
964 | - |
|
965 | - // When this function is called during Drupal's initial installation process, |
|
966 | - // the name of the profile that is about to be installed is stored in the |
|
967 | - // global $profile variable. At all other times, the regular system variable |
|
968 | - // contains the name of the current profile, and we can call variable_get() |
|
969 | - // to determine the profile. |
|
970 | - if (!isset($profile)) { |
|
963 | + global $profile; |
|
964 | + |
|
965 | + // When this function is called during Drupal's initial installation process, |
|
966 | + // the name of the profile that is about to be installed is stored in the |
|
967 | + // global $profile variable. At all other times, the regular system variable |
|
968 | + // contains the name of the current profile, and we can call variable_get() |
|
969 | + // to determine the profile. |
|
970 | + if (!isset($profile)) { |
|
971 | 971 | $profile = variable_get('install_profile', 'default'); |
972 | - } |
|
972 | + } |
|
973 | 973 | |
974 | - $directory = 'libraries'; |
|
975 | - $searchdir = array(); |
|
976 | - $config = conf_path(); |
|
974 | + $directory = 'libraries'; |
|
975 | + $searchdir = array(); |
|
976 | + $config = conf_path(); |
|
977 | 977 | |
978 | - // The 'profiles' directory contains pristine collections of modules and |
|
979 | - // themes as organized by a distribution. It is pristine in the same way |
|
980 | - // that /modules is pristine for core; users should avoid changing anything |
|
981 | - // there in favor of sites/all or sites/<domain> directories. |
|
982 | - if (file_exists("profiles/$profile/$directory")) { |
|
978 | + // The 'profiles' directory contains pristine collections of modules and |
|
979 | + // themes as organized by a distribution. It is pristine in the same way |
|
980 | + // that /modules is pristine for core; users should avoid changing anything |
|
981 | + // there in favor of sites/all or sites/<domain> directories. |
|
982 | + if (file_exists("profiles/$profile/$directory")) { |
|
983 | 983 | $searchdir[] = "profiles/$profile/$directory"; |
984 | - } |
|
984 | + } |
|
985 | 985 | |
986 | - // Always search sites/all/*. |
|
987 | - $searchdir[] = 'sites/all/' . $directory; |
|
986 | + // Always search sites/all/*. |
|
987 | + $searchdir[] = 'sites/all/' . $directory; |
|
988 | 988 | |
989 | - // Also search sites/<domain>/*. |
|
990 | - if (file_exists("$config/$directory")) { |
|
989 | + // Also search sites/<domain>/*. |
|
990 | + if (file_exists("$config/$directory")) { |
|
991 | 991 | $searchdir[] = "$config/$directory"; |
992 | - } |
|
992 | + } |
|
993 | 993 | |
994 | - // Retrieve list of directories. |
|
995 | - // @todo Core: Allow to scan for directories. |
|
996 | - $directories = array(); |
|
997 | - $nomask = array('CVS'); |
|
998 | - foreach ($searchdir as $dir) { |
|
994 | + // Retrieve list of directories. |
|
995 | + // @todo Core: Allow to scan for directories. |
|
996 | + $directories = array(); |
|
997 | + $nomask = array('CVS'); |
|
998 | + foreach ($searchdir as $dir) { |
|
999 | 999 | if (is_dir($dir) && $handle = opendir($dir)) { |
1000 | - while (FALSE !== ($file = readdir($handle))) { |
|
1000 | + while (FALSE !== ($file = readdir($handle))) { |
|
1001 | 1001 | if (!in_array($file, $nomask) && $file[0] != '.') { |
1002 | - if (is_dir("$dir/$file")) { |
|
1002 | + if (is_dir("$dir/$file")) { |
|
1003 | 1003 | $directories[$file] = "$dir/$file"; |
1004 | - } |
|
1004 | + } |
|
1005 | + } |
|
1005 | 1006 | } |
1006 | - } |
|
1007 | - closedir($handle); |
|
1007 | + closedir($handle); |
|
1008 | + } |
|
1008 | 1009 | } |
1009 | - } |
|
1010 | 1010 | |
1011 | - return $directories; |
|
1011 | + return $directories; |
|
1012 | 1012 | } |
1013 | 1013 | |
1014 | 1014 | /** |
@@ -1024,14 +1024,14 @@ discard block |
||
1024 | 1024 | * @see wysiwyg_load_includes(), _wysiwyg_process_include() |
1025 | 1025 | */ |
1026 | 1026 | function wysiwyg_get_directories($plugintype) { |
1027 | - $directories = array(); |
|
1028 | - foreach (module_implements('wysiwyg_include_directory') as $module) { |
|
1027 | + $directories = array(); |
|
1028 | + foreach (module_implements('wysiwyg_include_directory') as $module) { |
|
1029 | 1029 | $result = module_invoke($module, 'wysiwyg_include_directory', $plugintype); |
1030 | 1030 | if (isset($result) && is_string($result)) { |
1031 | - $directories[$module] = drupal_get_path('module', $module) . '/' . $result; |
|
1031 | + $directories[$module] = drupal_get_path('module', $module) . '/' . $result; |
|
1032 | 1032 | } |
1033 | - } |
|
1034 | - return $directories; |
|
1033 | + } |
|
1034 | + return $directories; |
|
1035 | 1035 | } |
1036 | 1036 | |
1037 | 1037 | /** |
@@ -1045,22 +1045,22 @@ discard block |
||
1045 | 1045 | * The name of the hook being invoked. |
1046 | 1046 | */ |
1047 | 1047 | function _wysiwyg_process_include($module, $identifier, $path, $hook) { |
1048 | - $function = $identifier . '_' . $hook; |
|
1049 | - if (!function_exists($function)) { |
|
1048 | + $function = $identifier . '_' . $hook; |
|
1049 | + if (!function_exists($function)) { |
|
1050 | 1050 | return NULL; |
1051 | - } |
|
1052 | - $result = $function(); |
|
1053 | - if (!isset($result) || !is_array($result)) { |
|
1051 | + } |
|
1052 | + $result = $function(); |
|
1053 | + if (!isset($result) || !is_array($result)) { |
|
1054 | 1054 | return NULL; |
1055 | - } |
|
1055 | + } |
|
1056 | 1056 | |
1057 | - // Fill in defaults. |
|
1058 | - foreach ($result as $editor => $properties) { |
|
1057 | + // Fill in defaults. |
|
1058 | + foreach ($result as $editor => $properties) { |
|
1059 | 1059 | $result[$editor]['module'] = $module; |
1060 | 1060 | $result[$editor]['name'] = $editor; |
1061 | 1061 | $result[$editor]['path'] = $path; |
1062 | - } |
|
1063 | - return $result; |
|
1062 | + } |
|
1063 | + return $result; |
|
1064 | 1064 | } |
1065 | 1065 | |
1066 | 1066 | /** |
@@ -1079,12 +1079,12 @@ discard block |
||
1079 | 1079 | * installed. |
1080 | 1080 | */ |
1081 | 1081 | function wysiwyg_features_api() { |
1082 | - $return = array(); |
|
1083 | - if (module_exists('exportables') && module_exists('ctools')) { |
|
1082 | + $return = array(); |
|
1083 | + if (module_exists('exportables') && module_exists('ctools')) { |
|
1084 | 1084 | module_load_include('inc', 'features', 'includes/features.ctools'); |
1085 | 1085 | $return = ctools_component_features_api('wysiwyg'); |
1086 | - } |
|
1087 | - return $return; |
|
1086 | + } |
|
1087 | + return $return; |
|
1088 | 1088 | } |
1089 | 1089 | |
1090 | 1090 | /** |
@@ -1094,10 +1094,10 @@ discard block |
||
1094 | 1094 | */ |
1095 | 1095 | function wysiwyg_features_export($data, &$export, $module_name = '') { |
1096 | 1096 | |
1097 | - $return = ctools_component_features_export('wysiwyg', $data, $export, $module_name); |
|
1098 | - $export['dependencies']['exportables'] = 'exportables'; |
|
1097 | + $return = ctools_component_features_export('wysiwyg', $data, $export, $module_name); |
|
1098 | + $export['dependencies']['exportables'] = 'exportables'; |
|
1099 | 1099 | |
1100 | - return $return; |
|
1100 | + return $return; |
|
1101 | 1101 | } |
1102 | 1102 | |
1103 | 1103 | /** |
@@ -79,9 +79,9 @@ |
||
79 | 79 | */ |
80 | 80 | function wysiwyg_help($path, $arg) { |
81 | 81 | switch ($path) { |
82 | - case 'admin/settings/wysiwyg': |
|
83 | - $output = '<p>' . t('A Wysiwyg profile is associated with an input format. A Wysiwyg profile defines which client-side editor is loaded with a particular input format, what buttons or themes are enabled for the editor, how the editor is displayed, and a few other editor-specific functions.') . '</p>'; |
|
84 | - return $output; |
|
82 | + case 'admin/settings/wysiwyg': |
|
83 | + $output = '<p>' . t('A Wysiwyg profile is associated with an input format. A Wysiwyg profile defines which client-side editor is loaded with a particular input format, what buttons or themes are enabled for the editor, how the editor is displayed, and a few other editor-specific functions.') . '</p>'; |
|
84 | + return $output; |
|
85 | 85 | } |
86 | 86 | } |
87 | 87 |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | function wysiwyg_help($path, $arg) { |
81 | 81 | switch ($path) { |
82 | 82 | case 'admin/settings/wysiwyg': |
83 | - $output = '<p>' . t('A Wysiwyg profile is associated with an input format. A Wysiwyg profile defines which client-side editor is loaded with a particular input format, what buttons or themes are enabled for the editor, how the editor is displayed, and a few other editor-specific functions.') . '</p>'; |
|
83 | + $output = '<p>'.t('A Wysiwyg profile is associated with an input format. A Wysiwyg profile defines which client-side editor is loaded with a particular input format, what buttons or themes are enabled for the editor, how the editor is displayed, and a few other editor-specific functions.').'</p>'; |
|
84 | 84 | return $output; |
85 | 85 | } |
86 | 86 | } |
@@ -179,9 +179,9 @@ discard block |
||
179 | 179 | if ($profile) { |
180 | 180 | $loaded = TRUE; |
181 | 181 | $editor = $profile->editor; |
182 | - $status = (int) wysiwyg_user_get_status($profile); |
|
182 | + $status = (int)wysiwyg_user_get_status($profile); |
|
183 | 183 | if (isset($profile->settings['show_toggle'])) { |
184 | - $toggle = (int) $profile->settings['show_toggle']; |
|
184 | + $toggle = (int)$profile->settings['show_toggle']; |
|
185 | 185 | } |
186 | 186 | // Check editor theme (and reset it if not/no longer available). |
187 | 187 | $theme = wysiwyg_get_editor_themes($profile, (isset($profile->settings['theme']) ? $profile->settings['theme'] : '')); |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | // Use a prefix/suffix for a single input format, or attach to input |
196 | 196 | // format selector radio buttons. |
197 | 197 | if (isset($element['format']['guidelines'])) { |
198 | - $element['format']['guidelines']['#prefix'] = '<div class="wysiwyg wysiwyg-format-' . $format . ' wysiwyg-editor-' . $editor . ' wysiwyg-field-' . $field['#id'] . ' wysiwyg-status-' . $status . ' wysiwyg-toggle-' . $toggle . $extra_class . '">'; |
|
198 | + $element['format']['guidelines']['#prefix'] = '<div class="wysiwyg wysiwyg-format-'.$format.' wysiwyg-editor-'.$editor.' wysiwyg-field-'.$field['#id'].' wysiwyg-status-'.$status.' wysiwyg-toggle-'.$toggle.$extra_class.'">'; |
|
199 | 199 | $element['format']['guidelines']['#suffix'] = '</div>'; |
200 | 200 | // Edge-case: Default format contains no input filters. |
201 | 201 | if (empty($element['format']['guidelines']['#value'])) { |
@@ -203,8 +203,8 @@ discard block |
||
203 | 203 | } |
204 | 204 | } |
205 | 205 | else { |
206 | - $element[$format]['#attributes']['class'] = (isset($element[$format]['#attributes']['class']) ? $element[$format]['#attributes']['class'] . ' ' : ''); |
|
207 | - $element[$format]['#attributes']['class'] .= 'wysiwyg wysiwyg-format-' . $format . ' wysiwyg-editor-' . $editor . ' wysiwyg-field-' . $field['#id'] . ' wysiwyg-status-' . $status . ' wysiwyg-toggle-' . $toggle . $extra_class; |
|
206 | + $element[$format]['#attributes']['class'] = (isset($element[$format]['#attributes']['class']) ? $element[$format]['#attributes']['class'].' ' : ''); |
|
207 | + $element[$format]['#attributes']['class'] .= 'wysiwyg wysiwyg-format-'.$format.' wysiwyg-editor-'.$editor.' wysiwyg-field-'.$field['#id'].' wysiwyg-status-'.$status.' wysiwyg-toggle-'.$toggle.$extra_class; |
|
208 | 208 | } |
209 | 209 | } |
210 | 210 | |
@@ -283,10 +283,10 @@ discard block |
||
283 | 283 | foreach ($files as $file => $options) { |
284 | 284 | if (is_array($options)) { |
285 | 285 | $options += array('type' => 'module', 'scope' => 'header', 'defer' => FALSE, 'cache' => TRUE, 'preprocess' => TRUE); |
286 | - drupal_add_js($editor['library path'] . '/' . $file, $options['type'], $options['scope'], $options['defer'], $options['cache'], $options['preprocess']); |
|
286 | + drupal_add_js($editor['library path'].'/'.$file, $options['type'], $options['scope'], $options['defer'], $options['cache'], $options['preprocess']); |
|
287 | 287 | } |
288 | 288 | else { |
289 | - drupal_add_js($editor['library path'] . '/' . $options); |
|
289 | + drupal_add_js($editor['library path'].'/'.$options); |
|
290 | 290 | } |
291 | 291 | } |
292 | 292 | // If editor defines an additional load callback, invoke it. |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | $files = $editor['js files']; |
301 | 301 | } |
302 | 302 | foreach ($files as $file) { |
303 | - drupal_add_js($editor['js path'] . '/' . $file); |
|
303 | + drupal_add_js($editor['js path'].'/'.$file); |
|
304 | 304 | } |
305 | 305 | // Load CSS stylesheets for this editor. |
306 | 306 | $files = array(); |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | $files = $editor['css files']; |
309 | 309 | } |
310 | 310 | foreach ($files as $file) { |
311 | - drupal_add_css($editor['css path'] . '/' . $file); |
|
311 | + drupal_add_css($editor['css path'].'/'.$file); |
|
312 | 312 | } |
313 | 313 | |
314 | 314 | drupal_add_js(array('wysiwyg' => array( |
@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | // @todo Move into (global) editor settings. |
317 | 317 | // If JS compression is enabled, at least TinyMCE is unable to determine |
318 | 318 | // its own base path and exec mode since it can't find the script name. |
319 | - 'editorBasePath' => base_path() . $editor['library path'], |
|
319 | + 'editorBasePath' => base_path().$editor['library path'], |
|
320 | 320 | 'execMode' => $library, |
321 | 321 | ))), |
322 | 322 | )), 'setting'); |
@@ -340,11 +340,11 @@ discard block |
||
340 | 340 | $path = drupal_get_path('module', 'wysiwyg'); |
341 | 341 | // Initialize our namespaces in the *header* to do not force editor |
342 | 342 | // integration scripts to check and define Drupal.wysiwyg on its own. |
343 | - drupal_add_js($path . '/wysiwyg.init.js', 'core'); |
|
343 | + drupal_add_js($path.'/wysiwyg.init.js', 'core'); |
|
344 | 344 | |
345 | 345 | // The 'none' editor is a special editor implementation, allowing us to |
346 | 346 | // attach and detach regular Drupal behaviors just like any other editor. |
347 | - drupal_add_js($path . '/editors/js/none.js'); |
|
347 | + drupal_add_js($path.'/editors/js/none.js'); |
|
348 | 348 | |
349 | 349 | // Add wysiwyg.js to the footer to ensure it's executed after the |
350 | 350 | // Drupal.settings array has been rendered and populated. Also, since editor |
@@ -352,7 +352,7 @@ discard block |
||
352 | 352 | // and Drupal.wysiwygInit() must be executed AFTER editors registered |
353 | 353 | // their callbacks and BEFORE Drupal.behaviors are applied, this must come |
354 | 354 | // last. |
355 | - drupal_add_js($path . '/wysiwyg.js', 'module', 'footer'); |
|
355 | + drupal_add_js($path.'/wysiwyg.js', 'module', 'footer'); |
|
356 | 356 | |
357 | 357 | $settings_added = TRUE; |
358 | 358 | } |
@@ -371,7 +371,7 @@ discard block |
||
371 | 371 | // drupal_to_js() does not properly convert numeric array keys, so we need |
372 | 372 | // to use a string instead of the format id. |
373 | 373 | if ($config) { |
374 | - drupal_add_js(array('wysiwyg' => array('configs' => array($profile->editor => array('format' . $profile->format => $config)))), 'setting'); |
|
374 | + drupal_add_js(array('wysiwyg' => array('configs' => array($profile->editor => array('format'.$profile->format => $config)))), 'setting'); |
|
375 | 375 | } |
376 | 376 | $formats[$profile->format] = TRUE; |
377 | 377 | } |
@@ -448,7 +448,7 @@ discard block |
||
448 | 448 | $settings_native = call_user_func($editor['plugin settings callback'], $editor, $profile, $profile_plugins_native); |
449 | 449 | |
450 | 450 | if ($settings_native) { |
451 | - drupal_add_js(array('wysiwyg' => array('plugins' => array('format' . $profile->format => array('native' => $settings_native)))), 'setting'); |
|
451 | + drupal_add_js(array('wysiwyg' => array('plugins' => array('format'.$profile->format => array('native' => $settings_native)))), 'setting'); |
|
452 | 452 | } |
453 | 453 | } |
454 | 454 | |
@@ -463,7 +463,7 @@ discard block |
||
463 | 463 | if (!isset($processed_plugins[$proxy][$plugin])) { |
464 | 464 | $profile_plugins_drupal[$plugin] = $processed_plugins[$proxy][$plugin] = $meta; |
465 | 465 | // Load the Drupal plugin's JavaScript. |
466 | - drupal_add_js($meta['js path'] . '/' . $meta['js file']); |
|
466 | + drupal_add_js($meta['js path'].'/'.$meta['js file']); |
|
467 | 467 | // Add plugin-specific settings. |
468 | 468 | if (isset($meta['settings'])) { |
469 | 469 | drupal_add_js(array('wysiwyg' => array('plugins' => array('drupal' => array($plugin => $meta['settings'])))), 'setting'); |
@@ -479,7 +479,7 @@ discard block |
||
479 | 479 | $settings_drupal = call_user_func($editor['proxy plugin settings callback'], $editor, $profile, $profile_plugins_drupal); |
480 | 480 | |
481 | 481 | if ($settings_drupal) { |
482 | - drupal_add_js(array('wysiwyg' => array('plugins' => array('format' . $profile->format => array('drupal' => $settings_drupal)))), 'setting'); |
|
482 | + drupal_add_js(array('wysiwyg' => array('plugins' => array('format'.$profile->format => array('drupal' => $settings_drupal)))), 'setting'); |
|
483 | 483 | } |
484 | 484 | } |
485 | 485 | } |
@@ -596,7 +596,7 @@ discard block |
||
596 | 596 | if ($media != 'print') { |
597 | 597 | foreach ($css['theme'] as $filepath => $preprocess) { |
598 | 598 | if (file_exists($filepath)) { |
599 | - $files[] = base_path() . $filepath; |
|
599 | + $files[] = base_path().$filepath; |
|
600 | 600 | } |
601 | 601 | } |
602 | 602 | } |
@@ -719,7 +719,7 @@ discard block |
||
719 | 719 | db_query("INSERT INTO {wysiwyg_user} (uid, format, status) VALUES (%d, %d, %d)", array( |
720 | 720 | $account->uid, |
721 | 721 | $format, |
722 | - (int) (bool) $status, |
|
722 | + (int)(bool)$status, |
|
723 | 723 | )); |
724 | 724 | } |
725 | 725 | } |
@@ -750,7 +750,7 @@ discard block |
||
750 | 750 | $status = isset($profile->settings['default']) ? $profile->settings['default'] : TRUE; |
751 | 751 | } |
752 | 752 | |
753 | - return (bool) $status; |
|
753 | + return (bool)$status; |
|
754 | 754 | } |
755 | 755 | |
756 | 756 | /** |
@@ -802,8 +802,8 @@ discard block |
||
802 | 802 | 'plugin callback' => NULL, |
803 | 803 | 'plugin settings callback' => NULL, |
804 | 804 | 'versions' => array(), |
805 | - 'js path' => $editors[$editor]['path'] . '/js', |
|
806 | - 'css path' => $editors[$editor]['path'] . '/css', |
|
805 | + 'js path' => $editors[$editor]['path'].'/js', |
|
806 | + 'css path' => $editors[$editor]['path'].'/css', |
|
807 | 807 | ); |
808 | 808 | // Check whether library is present. |
809 | 809 | if (!($editors[$editor]['installed'] = file_exists($editors[$editor]['library path']))) { |
@@ -855,12 +855,12 @@ discard block |
||
855 | 855 | $plugin += array( |
856 | 856 | 'title' => $plugin['name'], |
857 | 857 | 'vendor url' => '', |
858 | - 'js path' => $plugin['path'] . '/' . $plugin['name'], |
|
859 | - 'js file' => $plugin['name'] . '.js', |
|
860 | - 'css path' => $plugin['path'] . '/' . $plugin['name'], |
|
861 | - 'css file' => $plugin['name'] . '.css', |
|
862 | - 'icon path' => $plugin['path'] . '/' . $plugin['name'] . '/images', |
|
863 | - 'icon file' => $plugin['name'] . '.png', |
|
858 | + 'js path' => $plugin['path'].'/'.$plugin['name'], |
|
859 | + 'js file' => $plugin['name'].'.js', |
|
860 | + 'css path' => $plugin['path'].'/'.$plugin['name'], |
|
861 | + 'css file' => $plugin['name'].'.css', |
|
862 | + 'icon path' => $plugin['path'].'/'.$plugin['name'].'/images', |
|
863 | + 'icon file' => $plugin['name'].'.png', |
|
864 | 864 | 'dialog path' => $plugin['name'], |
865 | 865 | 'dialog settings' => array(), |
866 | 866 | 'settings callback' => NULL, |
@@ -868,10 +868,10 @@ discard block |
||
868 | 868 | ); |
869 | 869 | // Fill in default settings. |
870 | 870 | $plugin['settings'] += array( |
871 | - 'path' => base_path() . $plugin['path'] . '/' . $plugin['name'], |
|
871 | + 'path' => base_path().$plugin['path'].'/'.$plugin['name'], |
|
872 | 872 | ); |
873 | 873 | // Check whether library is present. |
874 | - if (!($plugin['installed'] = file_exists($plugin['js path'] . '/' . $plugin['js file']))) { |
|
874 | + if (!($plugin['installed'] = file_exists($plugin['js path'].'/'.$plugin['js file']))) { |
|
875 | 875 | continue; |
876 | 876 | } |
877 | 877 | } |
@@ -893,18 +893,18 @@ discard block |
||
893 | 893 | function wysiwyg_load_includes($type = 'editors', $hook = 'editor', $file = NULL) { |
894 | 894 | // Determine implementations. |
895 | 895 | $directories = wysiwyg_get_directories($type); |
896 | - $directories['wysiwyg'] = drupal_get_path('module', 'wysiwyg') . '/' . $type; |
|
896 | + $directories['wysiwyg'] = drupal_get_path('module', 'wysiwyg').'/'.$type; |
|
897 | 897 | $file_list = array(); |
898 | 898 | foreach ($directories as $module => $path) { |
899 | - $file_list[$module] = drupal_system_listing("$file" . '.inc$', $path, 'name', 0); |
|
899 | + $file_list[$module] = drupal_system_listing("$file".'.inc$', $path, 'name', 0); |
|
900 | 900 | } |
901 | 901 | |
902 | 902 | // Load implementations. |
903 | 903 | $info = array(); |
904 | 904 | foreach (array_filter($file_list) as $module => $files) { |
905 | 905 | foreach ($files as $file) { |
906 | - include_once './' . $file->filename; |
|
907 | - $result = _wysiwyg_process_include($module, $module . '_' . $file->name, dirname($file->filename), $hook); |
|
906 | + include_once './'.$file->filename; |
|
907 | + $result = _wysiwyg_process_include($module, $module.'_'.$file->name, dirname($file->filename), $hook); |
|
908 | 908 | if (is_array($result)) { |
909 | 909 | $info = array_merge($info, $result); |
910 | 910 | } |
@@ -934,7 +934,7 @@ discard block |
||
934 | 934 | } |
935 | 935 | if (!isset($libraries[$library])) { |
936 | 936 | // Most often, external libraries can be shared across multiple sites. |
937 | - return 'sites/all/libraries/' . $library; |
|
937 | + return 'sites/all/libraries/'.$library; |
|
938 | 938 | } |
939 | 939 | |
940 | 940 | $path = ($base_path ? base_path() : ''); |
@@ -984,7 +984,7 @@ discard block |
||
984 | 984 | } |
985 | 985 | |
986 | 986 | // Always search sites/all/*. |
987 | - $searchdir[] = 'sites/all/' . $directory; |
|
987 | + $searchdir[] = 'sites/all/'.$directory; |
|
988 | 988 | |
989 | 989 | // Also search sites/<domain>/*. |
990 | 990 | if (file_exists("$config/$directory")) { |
@@ -1028,7 +1028,7 @@ discard block |
||
1028 | 1028 | foreach (module_implements('wysiwyg_include_directory') as $module) { |
1029 | 1029 | $result = module_invoke($module, 'wysiwyg_include_directory', $plugintype); |
1030 | 1030 | if (isset($result) && is_string($result)) { |
1031 | - $directories[$module] = drupal_get_path('module', $module) . '/' . $result; |
|
1031 | + $directories[$module] = drupal_get_path('module', $module).'/'.$result; |
|
1032 | 1032 | } |
1033 | 1033 | } |
1034 | 1034 | return $directories; |
@@ -1045,7 +1045,7 @@ discard block |
||
1045 | 1045 | * The name of the hook being invoked. |
1046 | 1046 | */ |
1047 | 1047 | function _wysiwyg_process_include($module, $identifier, $path, $hook) { |
1048 | - $function = $identifier . '_' . $hook; |
|
1048 | + $function = $identifier.'_'.$hook; |
|
1049 | 1049 | if (!function_exists($function)) { |
1050 | 1050 | return NULL; |
1051 | 1051 | } |
@@ -201,8 +201,7 @@ discard block |
||
201 | 201 | if (empty($element['format']['guidelines']['#value'])) { |
202 | 202 | $element['format']['guidelines']['#value'] = ' '; |
203 | 203 | } |
204 | - } |
|
205 | - else { |
|
204 | + } else { |
|
206 | 205 | $element[$format]['#attributes']['class'] = (isset($element[$format]['#attributes']['class']) ? $element[$format]['#attributes']['class'] . ' ' : ''); |
207 | 206 | $element[$format]['#attributes']['class'] .= 'wysiwyg wysiwyg-format-' . $format . ' wysiwyg-editor-' . $editor . ' wysiwyg-field-' . $field['#id'] . ' wysiwyg-status-' . $status . ' wysiwyg-toggle-' . $toggle . $extra_class; |
208 | 207 | } |
@@ -273,8 +272,7 @@ discard block |
||
273 | 272 | if (isset($profile->settings['library']) && isset($editor['libraries'][$profile->settings['library']])) { |
274 | 273 | $library = $profile->settings['library']; |
275 | 274 | $files = $editor['libraries'][$library]['files']; |
276 | - } |
|
277 | - else { |
|
275 | + } else { |
|
278 | 276 | // Fallback to the first defined library by default (external libraries can change). |
279 | 277 | $library = key($editor['libraries']); |
280 | 278 | $files = array_shift($editor['libraries']); |
@@ -284,8 +282,7 @@ discard block |
||
284 | 282 | if (is_array($options)) { |
285 | 283 | $options += array('type' => 'module', 'scope' => 'header', 'defer' => FALSE, 'cache' => TRUE, 'preprocess' => TRUE); |
286 | 284 | drupal_add_js($editor['library path'] . '/' . $file, $options['type'], $options['scope'], $options['defer'], $options['cache'], $options['preprocess']); |
287 | - } |
|
288 | - else { |
|
285 | + } else { |
|
289 | 286 | drupal_add_js($editor['library path'] . '/' . $options); |
290 | 287 | } |
291 | 288 | } |
@@ -322,8 +319,7 @@ discard block |
||
322 | 319 | )), 'setting'); |
323 | 320 | |
324 | 321 | $loaded[$name] = TRUE; |
325 | - } |
|
326 | - else { |
|
322 | + } else { |
|
327 | 323 | $loaded[$name] = FALSE; |
328 | 324 | } |
329 | 325 | } |
@@ -468,8 +464,7 @@ discard block |
||
468 | 464 | if (isset($meta['settings'])) { |
469 | 465 | drupal_add_js(array('wysiwyg' => array('plugins' => array('drupal' => array($plugin => $meta['settings'])))), 'setting'); |
470 | 466 | } |
471 | - } |
|
472 | - else { |
|
467 | + } else { |
|
473 | 468 | $profile_plugins_drupal[$plugin] = $processed_plugins[$proxy][$plugin]; |
474 | 469 | } |
475 | 470 | } |
@@ -711,8 +706,7 @@ discard block |
||
711 | 706 | ); |
712 | 707 | return $form; |
713 | 708 | } |
714 | - } |
|
715 | - elseif ($op == 'insert' || $op == 'update') { |
|
709 | + } elseif ($op == 'insert' || $op == 'update') { |
|
716 | 710 | if (isset($edit['wysiwyg_status'])) { |
717 | 711 | db_query("DELETE FROM {wysiwyg_user} WHERE uid = %d", $account->uid); |
718 | 712 | foreach ($edit['wysiwyg_status'] as $format => $status) { |
@@ -745,8 +739,7 @@ discard block |
||
745 | 739 | |
746 | 740 | if (!empty($profile->settings['user_choose']) && isset($account->wysiwyg_status[$profile->format])) { |
747 | 741 | $status = $account->wysiwyg_status[$profile->format]; |
748 | - } |
|
749 | - else { |
|
742 | + } else { |
|
750 | 743 | $status = isset($profile->settings['default']) ? $profile->settings['default'] : TRUE; |
751 | 744 | } |
752 | 745 |
@@ -18,6 +18,10 @@ discard block |
||
18 | 18 | |
19 | 19 | // forms for account creation and login |
20 | 20 | |
21 | +/** |
|
22 | + * @param integer $teamid |
|
23 | + * @param string $next_url |
|
24 | + */ |
|
21 | 25 | function create_account_form($teamid, $next_url) { |
22 | 26 | global $recaptcha_public_key; |
23 | 27 | echo " |
@@ -92,6 +96,9 @@ discard block |
||
92 | 96 | echo "</form>\n"; |
93 | 97 | } |
94 | 98 | |
99 | +/** |
|
100 | + * @param string $next_url |
|
101 | + */ |
|
95 | 102 | function login_form($next_url) { |
96 | 103 | echo " |
97 | 104 | <form name=\"f\" method=\"post\" action=\"".secure_url_base()."/login_action.php\"> |
@@ -35,10 +35,10 @@ |
||
35 | 35 | // Using invitation codes to restrict access? |
36 | 36 | // |
37 | 37 | if (defined('INVITE_CODES')) { |
38 | - row2( |
|
39 | - tra("Invitation Code")."<br><small>".tra("A valid invitation code is required to create an account.")."</small>", |
|
40 | - '<input class="form-control" type="text" name="invite_code" size="30" >' |
|
41 | - ); |
|
38 | + row2( |
|
39 | + tra("Invitation Code")."<br><small>".tra("A valid invitation code is required to create an account.")."</small>", |
|
40 | + '<input class="form-control" type="text" name="invite_code" size="30" >' |
|
41 | + ); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | row2( |
@@ -107,7 +107,7 @@ |
||
107 | 107 | $x .= '<br><small><a href="get_passwd.php">'.tra("forgot email address?")."</a></small>"; |
108 | 108 | } |
109 | 109 | row2($x, '<input class="form-control" name=email_addr type="text" size=40 tabindex=1>'); |
110 | - row2(tra("Password:") . '<br><small><a href="get_passwd.php">' . tra("forgot password?") . "</a></small>", |
|
110 | + row2(tra("Password:").'<br><small><a href="get_passwd.php">'.tra("forgot password?")."</a></small>", |
|
111 | 111 | '<input class="form-control" type="password" name="passwd" size="40" tabindex="2">' |
112 | 112 | ); |
113 | 113 | row2(tra("Stay logged in"), |
@@ -52,6 +52,9 @@ |
||
52 | 52 | } |
53 | 53 | } |
54 | 54 | |
55 | +/** |
|
56 | + * @param string $path |
|
57 | + */ |
|
55 | 58 | function akismet_request($request, $host, $path, $port = 80) { |
56 | 59 | $http_request = "POST $path HTTP/1.0\r\n"; |
57 | 60 | $http_request .= "Host: $host\r\n"; |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | |
27 | 27 | $master_url_enc = urlencode($master_url); |
28 | 28 | $response = akismet_request("key=$key&blog=$master_url_enc", "rest.akismet.com", "/1.1/verify-key"); |
29 | - if ("valid" == $response[1] ) { |
|
29 | + if ("valid" == $response[1]) { |
|
30 | 30 | $post = urlencode($post); |
31 | 31 | $ip = urlencode($_SERVER['REMOTE_ADDR']); |
32 | 32 | $referrer = urlencode($_SERVER['HTTP_REFERER']); |
@@ -56,15 +56,15 @@ discard block |
||
56 | 56 | $http_request = "POST $path HTTP/1.0\r\n"; |
57 | 57 | $http_request .= "Host: $host\r\n"; |
58 | 58 | $http_request .= "Content-Type: application/x-www-form-urlencoded; charset=utf-8\r\n"; |
59 | - $http_request .= "Content-Length: " . strlen($request) . "\r\n"; |
|
59 | + $http_request .= "Content-Length: ".strlen($request)."\r\n"; |
|
60 | 60 | $http_request .= "User-Agent: BOINC | Akismet 1.1\r\n"; |
61 | 61 | $http_request .= "\r\n"; |
62 | 62 | $http_request .= $request; |
63 | 63 | |
64 | 64 | $response = ''; |
65 | - if( false !== ( $fs = @fsockopen($host, $port, $errno, $errstr, 3) ) ) { |
|
65 | + if (false !== ($fs = @fsockopen($host, $port, $errno, $errstr, 3))) { |
|
66 | 66 | fwrite($fs, $http_request); |
67 | - while ( !feof($fs) ) |
|
67 | + while (!feof($fs)) |
|
68 | 68 | $response .= fgets($fs, 1160); // One TCP-IP packet |
69 | 69 | fclose($fs); |
70 | 70 | $response = explode("\r\n\r\n", $response, 2); |
@@ -64,8 +64,10 @@ |
||
64 | 64 | $response = ''; |
65 | 65 | if( false !== ( $fs = @fsockopen($host, $port, $errno, $errstr, 3) ) ) { |
66 | 66 | fwrite($fs, $http_request); |
67 | - while ( !feof($fs) ) |
|
68 | - $response .= fgets($fs, 1160); // One TCP-IP packet |
|
67 | + while ( !feof($fs) ) { |
|
68 | + $response .= fgets($fs, 1160); |
|
69 | + } |
|
70 | + // One TCP-IP packet |
|
69 | 71 | fclose($fs); |
70 | 72 | $response = explode("\r\n\r\n", $response, 2); |
71 | 73 | } |
@@ -40,6 +40,10 @@ discard block |
||
40 | 40 | // 2: only use replica_db_user, only try replica_db_host |
41 | 41 | // can be set projectwide using <replica_fallback_mode> |
42 | 42 | // |
43 | + |
|
44 | + /** |
|
45 | + * @param boolean $readonly |
|
46 | + */ |
|
43 | 47 | static function get_aux($readonly, $fallback_mode = 0) { |
44 | 48 | $config = get_config(); |
45 | 49 | $user = parse_config($config, '<db_user>'); |
@@ -204,6 +208,10 @@ discard block |
||
204 | 208 | $db = BoincDb::get(); |
205 | 209 | return $db->count('user', $clause); |
206 | 210 | } |
211 | + |
|
212 | + /** |
|
213 | + * @param string $field |
|
214 | + */ |
|
207 | 215 | static function max($field) { |
208 | 216 | $db = BoincDb::get(); |
209 | 217 | return $db->max('user', $field); |
@@ -216,6 +224,10 @@ discard block |
||
216 | 224 | $db = BoincDb::get(); |
217 | 225 | return $db->enum('user', 'BoincUser', $where_clause, $order_clause); |
218 | 226 | } |
227 | + |
|
228 | + /** |
|
229 | + * @param string $fields |
|
230 | + */ |
|
219 | 231 | static function enum_fields($fields, $where_clause, $order_clause=null) { |
220 | 232 | $db = BoincDb::get(); |
221 | 233 | return $db->enum_fields( |
@@ -233,10 +245,19 @@ discard block |
||
233 | 245 | $db->delete_aux('profile', "userid=$this->id"); |
234 | 246 | return $db->delete($this, 'user'); |
235 | 247 | } |
248 | + |
|
249 | + /** |
|
250 | + * @param string $field |
|
251 | + */ |
|
236 | 252 | static function sum($field) { |
237 | 253 | $db = BoincDb::get(); |
238 | 254 | return $db->sum('user', $field); |
239 | 255 | } |
256 | + |
|
257 | + /** |
|
258 | + * @param string $field |
|
259 | + * @param string $clause |
|
260 | + */ |
|
240 | 261 | static function percentile($field, $clause, $pct) { |
241 | 262 | $db = BoincDb::get(); |
242 | 263 | return $db->percentile('user', $field, $clause, $pct); |
@@ -245,6 +266,10 @@ discard block |
||
245 | 266 | |
246 | 267 | class BoincTeam { |
247 | 268 | static $cache; |
269 | + |
|
270 | + /** |
|
271 | + * @param string $clause |
|
272 | + */ |
|
248 | 273 | static function insert($clause) { |
249 | 274 | $db = BoincDb::get(); |
250 | 275 | $ret = $db->insert('team', $clause); |
@@ -282,14 +307,27 @@ discard block |
||
282 | 307 | $db = BoincDb::get(); |
283 | 308 | return $db->delete($this, 'team'); |
284 | 309 | } |
310 | + |
|
311 | + /** |
|
312 | + * @param string $field |
|
313 | + * @param string $clause |
|
314 | + */ |
|
285 | 315 | static function percentile($field, $clause, $pct) { |
286 | 316 | $db = BoincDb::get(); |
287 | 317 | return $db->percentile('team', $field, $clause, $pct); |
288 | 318 | } |
319 | + |
|
320 | + /** |
|
321 | + * @param string $field |
|
322 | + */ |
|
289 | 323 | static function max($field) { |
290 | 324 | $db = BoincDb::get(); |
291 | 325 | return $db->max('team', $field); |
292 | 326 | } |
327 | + |
|
328 | + /** |
|
329 | + * @param string $fields |
|
330 | + */ |
|
293 | 331 | static function enum_fields($fields, $where_clause, $order_clause=null) { |
294 | 332 | $db = BoincDb::get(); |
295 | 333 | return $db->enum_fields( |
@@ -326,6 +364,12 @@ discard block |
||
326 | 364 | $db = BoincDb::get(); |
327 | 365 | return $db->enum('host', 'BoincHost', $where_clause, $order_clause); |
328 | 366 | } |
367 | + |
|
368 | + /** |
|
369 | + * @param string $fields |
|
370 | + * @param string $where_clause |
|
371 | + * @param string $order_clause |
|
372 | + */ |
|
329 | 373 | static function enum_fields($fields, $where_clause, $order_clause=null) { |
330 | 374 | $db = BoincDb::get(); |
331 | 375 | return $db->enum_fields( |
@@ -358,6 +402,10 @@ discard block |
||
358 | 402 | $db = BoincDb::get(); |
359 | 403 | return $db->enum('result', 'BoincResult', $where_clause); |
360 | 404 | } |
405 | + |
|
406 | + /** |
|
407 | + * @param string $fields |
|
408 | + */ |
|
361 | 409 | static function enum_fields($fields, $where_clause, $order_clause) { |
362 | 410 | $db = BoincDb::get(); |
363 | 411 | return $db->enum_fields('result', 'BoincResult', $fields, $where_clause, $order_clause); |
@@ -412,6 +460,10 @@ discard block |
||
412 | 460 | $db = BoincDb::get(); |
413 | 461 | return $db->update_aux('workunit', $clause); |
414 | 462 | } |
463 | + |
|
464 | + /** |
|
465 | + * @param string $clause |
|
466 | + */ |
|
415 | 467 | static function count($clause) { |
416 | 468 | $db = BoincDb::get(); |
417 | 469 | return $db->count('workunit', $clause); |
@@ -427,6 +479,10 @@ discard block |
||
427 | 479 | $db = BoincDb::get(); |
428 | 480 | return $db->lookup('app', 'BoincApp', $clause); |
429 | 481 | } |
482 | + |
|
483 | + /** |
|
484 | + * @param string $where_clause |
|
485 | + */ |
|
430 | 486 | static function enum($where_clause) { |
431 | 487 | $db = BoincDb::get(); |
432 | 488 | return $db->enum('app', 'BoincApp', $where_clause); |
@@ -441,6 +497,11 @@ discard block |
||
441 | 497 | $db = BoincDb::get(); |
442 | 498 | return $db->update($this, 'app', $clause); |
443 | 499 | } |
500 | + |
|
501 | + /** |
|
502 | + * @param string $field |
|
503 | + * @param string $clause |
|
504 | + */ |
|
444 | 505 | static function sum($field, $clause=null) { |
445 | 506 | $db = BoincDb::get(); |
446 | 507 | return $db->sum('app', $field, $clause); |
@@ -473,6 +534,10 @@ discard block |
||
473 | 534 | } |
474 | 535 | |
475 | 536 | class BoincProfile { |
537 | + |
|
538 | + /** |
|
539 | + * @param string $fields |
|
540 | + */ |
|
476 | 541 | static function lookup_fields($fields, $clause) { |
477 | 542 | $db = BoincDb::get(); |
478 | 543 | return $db->lookup_fields('profile', 'BoincProfile', $fields, $clause); |
@@ -489,18 +554,37 @@ discard block |
||
489 | 554 | $db = BoincDb::get(); |
490 | 555 | return $db->update_aux('profile', $clause.' where userid='.$this->userid); |
491 | 556 | } |
557 | + |
|
558 | + /** |
|
559 | + * @param string $clause |
|
560 | + */ |
|
492 | 561 | static function update_aux($clause) { |
493 | 562 | $db = BoincDb::get(); |
494 | 563 | return $db->update_aux('profile', $clause); |
495 | 564 | } |
565 | + |
|
566 | + /** |
|
567 | + * @param string $clause |
|
568 | + */ |
|
496 | 569 | static function insert($clause) { |
497 | 570 | $db = BoincDb::get(); |
498 | 571 | return $db->insert('profile', $clause); |
499 | 572 | } |
573 | + |
|
574 | + /** |
|
575 | + * @param string $where_clause |
|
576 | + * @param string $order_clause |
|
577 | + */ |
|
500 | 578 | static function enum($where_clause=null, $order_clause=null) { |
501 | 579 | $db = BoincDb::get(); |
502 | 580 | return $db->enum('profile', 'BoincProfile', $where_clause, $order_clause); |
503 | 581 | } |
582 | + |
|
583 | + /** |
|
584 | + * @param string $fields |
|
585 | + * @param string $where_clause |
|
586 | + * @param string $order_clause |
|
587 | + */ |
|
504 | 588 | static function enum_fields($fields, $where_clause=null, $order_clause=null) { |
505 | 589 | $db = BoincDb::get(); |
506 | 590 | return $db->enum_fields('profile', 'BoincProfile', $fields, $where_clause, $order_clause); |
@@ -568,6 +652,10 @@ discard block |
||
568 | 652 | } |
569 | 653 | |
570 | 654 | class BoincPlatform { |
655 | + |
|
656 | + /** |
|
657 | + * @param string $where_clause |
|
658 | + */ |
|
571 | 659 | static function enum($where_clause) { |
572 | 660 | $db = BoincDb::get(); |
573 | 661 | return $db->enum('platform', 'BoincPlatform', $where_clause); |
@@ -648,6 +736,10 @@ discard block |
||
648 | 736 | } |
649 | 737 | |
650 | 738 | class BoincBadge { |
739 | + |
|
740 | + /** |
|
741 | + * @param string $where_clause |
|
742 | + */ |
|
651 | 743 | static function enum($where_clause) { |
652 | 744 | $db = BoincDb::get(); |
653 | 745 | return $db->enum('badge', 'BoincBadge', $where_clause); |
@@ -743,6 +835,11 @@ discard block |
||
743 | 835 | $db = BoincDb::get(); |
744 | 836 | return $db->enum('credit_user', 'BoincCreditUser', $where_clause); |
745 | 837 | } |
838 | + |
|
839 | + /** |
|
840 | + * @param string $field |
|
841 | + * @param string $clause |
|
842 | + */ |
|
746 | 843 | static function sum($field, $clause) { |
747 | 844 | $db = BoincDb::get(); |
748 | 845 | return $db->sum('credit_user', $field, $clause); |
@@ -766,6 +863,11 @@ discard block |
||
766 | 863 | $db = BoincDb::get(); |
767 | 864 | return $db->enum('credit_team', 'BoincCreditTeam', $where_clause); |
768 | 865 | } |
866 | + |
|
867 | + /** |
|
868 | + * @param string $field |
|
869 | + * @param string $clause |
|
870 | + */ |
|
769 | 871 | static function sum($field, $clause) { |
770 | 872 | $db = BoincDb::get(); |
771 | 873 | return $db->sum('credit_team', $field, $clause); |
@@ -780,6 +882,11 @@ discard block |
||
780 | 882 | // |
781 | 883 | // apply this to any user-supplied strings used in queries |
782 | 884 | // |
885 | +/** |
|
886 | + * @param string $x |
|
887 | + * |
|
888 | + * @return string |
|
889 | + */ |
|
783 | 890 | function boinc_real_escape_string($x) { |
784 | 891 | if (version_compare(phpversion(),"4.3.0")>=0) { |
785 | 892 | return BoincDb::escape_string($x); |
@@ -358,10 +358,10 @@ |
||
358 | 358 | $db = BoincDb::get(); |
359 | 359 | return $db->enum('result', 'BoincResult', $where_clause); |
360 | 360 | } |
361 | - static function enum_fields($fields, $where_clause, $order_clause) { |
|
361 | + static function enum_fields($fields, $where_clause, $order_clause) { |
|
362 | 362 | $db = BoincDb::get(); |
363 | - return $db->enum_fields('result', 'BoincResult', $fields, $where_clause, $order_clause); |
|
364 | - } |
|
363 | + return $db->enum_fields('result', 'BoincResult', $fields, $where_clause, $order_clause); |
|
364 | + } |
|
365 | 365 | function update($clause) { |
366 | 366 | $db = BoincDb::get(); |
367 | 367 | return $db->update($this, 'result', $clause); |
@@ -212,11 +212,11 @@ discard block |
||
212 | 212 | $db = BoincDb::get(); |
213 | 213 | return $db->update($this, 'user', $clause); |
214 | 214 | } |
215 | - static function enum($where_clause, $order_clause=null) { |
|
215 | + static function enum($where_clause, $order_clause = null) { |
|
216 | 216 | $db = BoincDb::get(); |
217 | 217 | return $db->enum('user', 'BoincUser', $where_clause, $order_clause); |
218 | 218 | } |
219 | - static function enum_fields($fields, $where_clause, $order_clause=null) { |
|
219 | + static function enum_fields($fields, $where_clause, $order_clause = null) { |
|
220 | 220 | $db = BoincDb::get(); |
221 | 221 | return $db->enum_fields( |
222 | 222 | 'user', 'BoincUser', $fields, $where_clause, $order_clause |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | $db = BoincDb::get(); |
266 | 266 | return $db->update($this, 'team', $clause); |
267 | 267 | } |
268 | - static function enum($where_clause, $order_clause=null) { |
|
268 | + static function enum($where_clause, $order_clause = null) { |
|
269 | 269 | $db = BoincDb::get(); |
270 | 270 | return $db->enum('team', 'BoincTeam', $where_clause, $order_clause); |
271 | 271 | } |
@@ -290,7 +290,7 @@ discard block |
||
290 | 290 | $db = BoincDb::get(); |
291 | 291 | return $db->max('team', $field); |
292 | 292 | } |
293 | - static function enum_fields($fields, $where_clause, $order_clause=null) { |
|
293 | + static function enum_fields($fields, $where_clause, $order_clause = null) { |
|
294 | 294 | $db = BoincDb::get(); |
295 | 295 | return $db->enum_fields( |
296 | 296 | 'team', 'BoincTeam', $fields, $where_clause, $order_clause |
@@ -322,11 +322,11 @@ discard block |
||
322 | 322 | $db = BoincDb::get(); |
323 | 323 | return $db->delete($this, 'host'); |
324 | 324 | } |
325 | - static function enum($where_clause, $order_clause=null) { |
|
325 | + static function enum($where_clause, $order_clause = null) { |
|
326 | 326 | $db = BoincDb::get(); |
327 | 327 | return $db->enum('host', 'BoincHost', $where_clause, $order_clause); |
328 | 328 | } |
329 | - static function enum_fields($fields, $where_clause, $order_clause=null) { |
|
329 | + static function enum_fields($fields, $where_clause, $order_clause = null) { |
|
330 | 330 | $db = BoincDb::get(); |
331 | 331 | return $db->enum_fields( |
332 | 332 | 'host', 'BoincHost', $fields, $where_clause, $order_clause |
@@ -441,7 +441,7 @@ discard block |
||
441 | 441 | $db = BoincDb::get(); |
442 | 442 | return $db->update($this, 'app', $clause); |
443 | 443 | } |
444 | - static function sum($field, $clause=null) { |
|
444 | + static function sum($field, $clause = null) { |
|
445 | 445 | $db = BoincDb::get(); |
446 | 446 | return $db->sum('app', $field, $clause); |
447 | 447 | } |
@@ -497,11 +497,11 @@ discard block |
||
497 | 497 | $db = BoincDb::get(); |
498 | 498 | return $db->insert('profile', $clause); |
499 | 499 | } |
500 | - static function enum($where_clause=null, $order_clause=null) { |
|
500 | + static function enum($where_clause = null, $order_clause = null) { |
|
501 | 501 | $db = BoincDb::get(); |
502 | 502 | return $db->enum('profile', 'BoincProfile', $where_clause, $order_clause); |
503 | 503 | } |
504 | - static function enum_fields($fields, $where_clause=null, $order_clause=null) { |
|
504 | + static function enum_fields($fields, $where_clause = null, $order_clause = null) { |
|
505 | 505 | $db = BoincDb::get(); |
506 | 506 | return $db->enum_fields('profile', 'BoincProfile', $fields, $where_clause, $order_clause); |
507 | 507 | } |
@@ -781,7 +781,7 @@ discard block |
||
781 | 781 | // apply this to any user-supplied strings used in queries |
782 | 782 | // |
783 | 783 | function boinc_real_escape_string($x) { |
784 | - if (version_compare(phpversion(),"4.3.0")>=0) { |
|
784 | + if (version_compare(phpversion(), "4.3.0") >= 0) { |
|
785 | 785 | return BoincDb::escape_string($x); |
786 | 786 | } else { |
787 | 787 | $x = str_replace("'", "\'", $x); |
@@ -73,9 +73,15 @@ discard block |
||
73 | 73 | return $instance; |
74 | 74 | } else { |
75 | 75 | // use replica user if given or use normal user for $fallback_mode == 0 |
76 | - if ($u) $user = $u; |
|
77 | - if ($p) $passwd = $p; |
|
78 | - if ($n) $name = $n; |
|
76 | + if ($u) { |
|
77 | + $user = $u; |
|
78 | + } |
|
79 | + if ($p) { |
|
80 | + $passwd = $p; |
|
81 | + } |
|
82 | + if ($n) { |
|
83 | + $name = $n; |
|
84 | + } |
|
79 | 85 | } |
80 | 86 | // skip this block if no $replica_host is specified for $fallback_mode == 0 |
81 | 87 | if ($replica_host) { |
@@ -225,7 +231,9 @@ discard block |
||
225 | 231 | static function insert($clause) { |
226 | 232 | $db = BoincDb::get(); |
227 | 233 | $ret = $db->insert('user', $clause); |
228 | - if (!$ret) return 0; |
|
234 | + if (!$ret) { |
|
235 | + return 0; |
|
236 | + } |
|
229 | 237 | return $db->insert_id(); |
230 | 238 | } |
231 | 239 | function delete() { |
@@ -248,7 +256,9 @@ discard block |
||
248 | 256 | static function insert($clause) { |
249 | 257 | $db = BoincDb::get(); |
250 | 258 | $ret = $db->insert('team', $clause); |
251 | - if (!$ret) return 0; |
|
259 | + if (!$ret) { |
|
260 | + return 0; |
|
261 | + } |
|
252 | 262 | return $db->insert_id(); |
253 | 263 | } |
254 | 264 | static function lookup_id_nocache($id) { |
@@ -344,7 +354,9 @@ discard block |
||
344 | 354 | static function insert($clause) { |
345 | 355 | $db = BoincDb::get(); |
346 | 356 | $ret = $db->insert('host', $clause); |
347 | - if (!$ret) return $ret; |
|
357 | + if (!$ret) { |
|
358 | + return $ret; |
|
359 | + } |
|
348 | 360 | return $db->insert_id(); |
349 | 361 | } |
350 | 362 | } |
@@ -397,7 +409,9 @@ discard block |
||
397 | 409 | static function insert($clause) { |
398 | 410 | $db = BoincDb::get(); |
399 | 411 | $ret = $db->insert('workunit', $clause); |
400 | - if (!$ret) return $ret; |
|
412 | + if (!$ret) { |
|
413 | + return $ret; |
|
414 | + } |
|
401 | 415 | return $db->insert_id(); |
402 | 416 | } |
403 | 417 | static function enum($where_clause) { |
@@ -434,7 +448,9 @@ discard block |
||
434 | 448 | static function insert($clause) { |
435 | 449 | $db = BoincDb::get(); |
436 | 450 | $ret = $db->insert('app', $clause); |
437 | - if (!$ret) return $ret; |
|
451 | + if (!$ret) { |
|
452 | + return $ret; |
|
453 | + } |
|
438 | 454 | return $db->insert_id(); |
439 | 455 | } |
440 | 456 | function update($clause) { |
@@ -463,7 +479,9 @@ discard block |
||
463 | 479 | static function insert($clause) { |
464 | 480 | $db = BoincDb::get(); |
465 | 481 | $ret = $db->insert('app_version', $clause); |
466 | - if (!$ret) return $ret; |
|
482 | + if (!$ret) { |
|
483 | + return $ret; |
|
484 | + } |
|
467 | 485 | return $db->insert_id(); |
468 | 486 | } |
469 | 487 | function update($clause) { |
@@ -550,7 +568,9 @@ discard block |
||
550 | 568 | static function insert($clause) { |
551 | 569 | $db = BoincDb::get(); |
552 | 570 | $ret = $db->insert('private_messages', $clause); |
553 | - if (!$ret) return $ret; |
|
571 | + if (!$ret) { |
|
572 | + return $ret; |
|
573 | + } |
|
554 | 574 | return $db->insert_id(); |
555 | 575 | } |
556 | 576 | static function count($clause) { |
@@ -618,7 +638,9 @@ discard block |
||
618 | 638 | ); |
619 | 639 | foreach ($avs as $av) { |
620 | 640 | foreach ($avs as $av2) { |
621 | - if ($av->id == $av2->id) continue; |
|
641 | + if ($av->id == $av2->id) { |
|
642 | + continue; |
|
643 | + } |
|
622 | 644 | if ($av->plan_class == $av2->plan_class && $av->version_num > $av2->version_num) { |
623 | 645 | $av2->deprecated = 1; |
624 | 646 | } else if ($av2->beta) { |
@@ -655,7 +677,9 @@ discard block |
||
655 | 677 | static function insert($clause) { |
656 | 678 | $db = BoincDb::get(); |
657 | 679 | $ret = $db->insert('badge', $clause); |
658 | - if (!$ret) return 0; |
|
680 | + if (!$ret) { |
|
681 | + return 0; |
|
682 | + } |
|
659 | 683 | return $db->insert_id(); |
660 | 684 | } |
661 | 685 | function update($clause) { |
@@ -684,7 +708,9 @@ discard block |
||
684 | 708 | static function insert($clause) { |
685 | 709 | $db = BoincDb::get(); |
686 | 710 | $ret = $db->insert('badge_user', $clause); |
687 | - if (!$ret) return false; |
|
711 | + if (!$ret) { |
|
712 | + return false; |
|
713 | + } |
|
688 | 714 | return true; |
689 | 715 | } |
690 | 716 | static function lookup($clause) { |
@@ -713,7 +739,9 @@ discard block |
||
713 | 739 | static function insert($clause) { |
714 | 740 | $db = BoincDb::get(); |
715 | 741 | $ret = $db->insert('badge_team', $clause); |
716 | - if (!$ret) return false; |
|
742 | + if (!$ret) { |
|
743 | + return false; |
|
744 | + } |
|
717 | 745 | return true; |
718 | 746 | } |
719 | 747 | static function lookup($clause) { |
@@ -246,6 +246,9 @@ discard block |
||
246 | 246 | |
247 | 247 | } |
248 | 248 | |
249 | +/** |
|
250 | + * @param string $n |
|
251 | + */ |
|
249 | 252 | function name($n) { |
250 | 253 | return array('name', $n); |
251 | 254 | } |
@@ -254,10 +257,16 @@ discard block |
||
254 | 257 | return array('title', $n); |
255 | 258 | } |
256 | 259 | |
260 | +/** |
|
261 | + * @param integer $n |
|
262 | + */ |
|
257 | 263 | function number($n) { |
258 | 264 | return array('number', $n); |
259 | 265 | } |
260 | 266 | |
267 | +/** |
|
268 | + * @param string $n |
|
269 | + */ |
|
261 | 270 | function filename($n) { |
262 | 271 | return array('filename', $n); |
263 | 272 | } |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | public $title; |
31 | 31 | // Optional; used when showing course history outline. |
32 | 32 | public $is_item; |
33 | - public $attrs; // course-defined |
|
33 | + public $attrs; // course-defined |
|
34 | 34 | |
35 | 35 | abstract function walk(&$iter, $incr, &$frac_done); |
36 | 36 | // multi-purpose function for traversing a course. |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | $this->query_string = null; |
56 | 56 | } else { |
57 | 57 | $this->filename = substr($filename, 0, $p); |
58 | - $this->query_string = substr($filename, $p+1); |
|
58 | + $this->query_string = substr($filename, $p + 1); |
|
59 | 59 | } |
60 | 60 | $this->name = $filename; |
61 | 61 | $this->title = $title; |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | // look up unit by name |
163 | 163 | // |
164 | 164 | $child = null; |
165 | - for ($i=0; $i<$n; $i++) { |
|
165 | + for ($i = 0; $i < $n; $i++) { |
|
166 | 166 | $c = $this->units[$i]; |
167 | 167 | if ($c->name == $child_name) { |
168 | 168 | $child = $c; |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | if ($i >= $n) { |
178 | 178 | // and if index is too big, use last unit |
179 | 179 | // |
180 | - $i = $n-1; |
|
180 | + $i = $n - 1; |
|
181 | 181 | } |
182 | 182 | $child = $this->units[$i]; |
183 | 183 | } |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | $this->finished($iter); |
198 | 198 | return true; |
199 | 199 | } else { |
200 | - $i = ($i+1)%$n; |
|
200 | + $i = ($i + 1)%$n; |
|
201 | 201 | } |
202 | 202 | } |
203 | 203 | } |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | if (array_key_exists($this->name, $state)) { |
236 | 236 | $state_rec = $state[$this->name]; |
237 | 237 | $child_name = $state_rec['child_name']; |
238 | - foreach($this->units as $c) { |
|
238 | + foreach ($this->units as $c) { |
|
239 | 239 | if ($c->name == $child_name) { |
240 | 240 | return $c; |
241 | 241 | } |
@@ -130,7 +130,9 @@ discard block |
||
130 | 130 | // |
131 | 131 | function restart(&$iter) { |
132 | 132 | $state_rec = $iter->state[$this->name]; |
133 | - if (!$state_rec) $state_rec = $this->init(); |
|
133 | + if (!$state_rec) { |
|
134 | + $state_rec = $this->init(); |
|
135 | + } |
|
134 | 136 | $state_rec['nshown'] = 0; |
135 | 137 | $state_rec['child_name'] = null; |
136 | 138 | $iter->state[$this->name] = $state_rec; |
@@ -346,7 +348,9 @@ discard block |
||
346 | 348 | |
347 | 349 | function student_age() { |
348 | 350 | global $user; |
349 | - if (!$user->bolt->birth_year) return -1; |
|
351 | + if (!$user->bolt->birth_year) { |
|
352 | + return -1; |
|
353 | + } |
|
350 | 354 | $date = getdate(); |
351 | 355 | $this_year = $date["year"]; |
352 | 356 | return $this_year - $user->bolt->birth_year; |
@@ -240,6 +240,10 @@ discard block |
||
240 | 240 | |
241 | 241 | class BoltFitbField { |
242 | 242 | public $textarea, $nrows, $ncols; |
243 | + |
|
244 | + /** |
|
245 | + * @param boolean $textarea |
|
246 | + */ |
|
243 | 247 | function __construct($textarea, $nrows, $ncols) { |
244 | 248 | $this->textarea = $textarea; |
245 | 249 | $this->nrows = $nrows; |
@@ -258,6 +262,10 @@ discard block |
||
258 | 262 | class BoltFitbAnswer { |
259 | 263 | public $type; // 0=constant, 1=regexp, 2=func |
260 | 264 | public $ans; |
265 | + |
|
266 | + /** |
|
267 | + * @param integer $type |
|
268 | + */ |
|
261 | 269 | function __construct($type, $ans) { |
262 | 270 | $this->type = $type; |
263 | 271 | $this->ans = $ans; |
@@ -21,11 +21,11 @@ discard block |
||
21 | 21 | // The following is a global var accessed by exercise functions. |
22 | 22 | // |
23 | 23 | $bolt_ex = null; |
24 | -$bolt_ex->mode = 0; // input: SHOW/SCORE/ANSWER |
|
25 | -$bolt_ex->index = 0; // input: sequence of this exercise in file |
|
26 | -$bolt_ex->score = 0; // input/output: cumulative score (if mode = SCORE) |
|
27 | -$bolt_ex->weight = 0; // input/output: cumulative weight |
|
28 | -$bolt_ex->query_string = ""; // user's response (if SCORE or ANSWER) |
|
24 | +$bolt_ex->mode = 0; // input: SHOW/SCORE/ANSWER |
|
25 | +$bolt_ex->index = 0; // input: sequence of this exercise in file |
|
26 | +$bolt_ex->score = 0; // input/output: cumulative score (if mode = SCORE) |
|
27 | +$bolt_ex->weight = 0; // input/output: cumulative weight |
|
28 | +$bolt_ex->query_string = ""; // user's response (if SCORE or ANSWER) |
|
29 | 29 | |
30 | 30 | function weight($w) { |
31 | 31 | return array('weight', $w); |
@@ -170,9 +170,9 @@ discard block |
||
170 | 170 | $response = isset($$key); |
171 | 171 | $r = $choice[1]; |
172 | 172 | $correct = ($r && $response) || (!$r && !$response); |
173 | - $color = $correct?"#88ff88":"#ff8888"; |
|
174 | - table_row($c, $r?"yes":"no", |
|
175 | - array($response?"yes":"no", "bgcolor=$color") |
|
173 | + $color = $correct ? "#88ff88" : "#ff8888"; |
|
174 | + table_row($c, $r ? "yes" : "no", |
|
175 | + array($response ? "yes" : "no", "bgcolor=$color") |
|
176 | 176 | ); |
177 | 177 | $i++; |
178 | 178 | } |
@@ -215,11 +215,11 @@ discard block |
||
215 | 215 | if ($y > $rect[3]) $right = false; |
216 | 216 | $cx = $rect[0]; |
217 | 217 | $cy = $rect[2]; |
218 | - $sizex = $rect[1]-$rect[0]; |
|
219 | - $sizey = $rect[3]-$rect[2]; |
|
220 | - $ax = $x-4; |
|
221 | - $ay = $y-4; |
|
222 | - $color = $right?"green":"red"; |
|
218 | + $sizex = $rect[1] - $rect[0]; |
|
219 | + $sizey = $rect[3] - $rect[2]; |
|
220 | + $ax = $x - 4; |
|
221 | + $ay = $y - 4; |
|
222 | + $color = $right ? "green" : "red"; |
|
223 | 223 | if ($right) { |
224 | 224 | echo "The point you selected (shown in green) is correct."; |
225 | 225 | } else { |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | } |
257 | 257 | |
258 | 258 | class BoltFitbAnswer { |
259 | - public $type; // 0=constant, 1=regexp, 2=func |
|
259 | + public $type; // 0=constant, 1=regexp, 2=func |
|
260 | 260 | public $ans; |
261 | 261 | function __construct($type, $ans) { |
262 | 262 | $this->type = $type; |
@@ -152,7 +152,9 @@ discard block |
||
152 | 152 | $response = isset($$key); |
153 | 153 | $r = $choice[1]; |
154 | 154 | $correct = ($r && $response) || (!$r && !$response); |
155 | - if ($correct) $score += 1./$n; |
|
155 | + if ($correct) { |
|
156 | + $score += 1./$n; |
|
157 | + } |
|
156 | 158 | $i++; |
157 | 159 | } |
158 | 160 | $bolt_ex->score += $score; |
@@ -196,10 +198,18 @@ discard block |
||
196 | 198 | $x = get_int("pic_".$bolt_ex->index."_x"); |
197 | 199 | $y = get_int("pic_".$bolt_ex->index."_y"); |
198 | 200 | $right = true; |
199 | - if ($x < $rect[0]) $right = false; |
|
200 | - if ($x > $rect[1]) $right = false; |
|
201 | - if ($y < $rect[2]) $right = false; |
|
202 | - if ($y > $rect[3]) $right = false; |
|
201 | + if ($x < $rect[0]) { |
|
202 | + $right = false; |
|
203 | + } |
|
204 | + if ($x > $rect[1]) { |
|
205 | + $right = false; |
|
206 | + } |
|
207 | + if ($y < $rect[2]) { |
|
208 | + $right = false; |
|
209 | + } |
|
210 | + if ($y > $rect[3]) { |
|
211 | + $right = false; |
|
212 | + } |
|
203 | 213 | if ($right) { |
204 | 214 | $bolt_ex->score += 1; |
205 | 215 | } |
@@ -209,10 +219,18 @@ discard block |
||
209 | 219 | $x = get_int("pic_".$bolt_ex->index."_x"); |
210 | 220 | $y = get_int("pic_".$bolt_ex->index."_y"); |
211 | 221 | $right = true; |
212 | - if ($x < $rect[0]) $right = false; |
|
213 | - if ($x > $rect[1]) $right = false; |
|
214 | - if ($y < $rect[2]) $right = false; |
|
215 | - if ($y > $rect[3]) $right = false; |
|
222 | + if ($x < $rect[0]) { |
|
223 | + $right = false; |
|
224 | + } |
|
225 | + if ($x > $rect[1]) { |
|
226 | + $right = false; |
|
227 | + } |
|
228 | + if ($y < $rect[2]) { |
|
229 | + $right = false; |
|
230 | + } |
|
231 | + if ($y > $rect[3]) { |
|
232 | + $right = false; |
|
233 | + } |
|
216 | 234 | $cx = $rect[0]; |
217 | 235 | $cy = $rect[2]; |
218 | 236 | $sizex = $rect[1]-$rect[0]; |
@@ -308,7 +326,9 @@ discard block |
||
308 | 326 | } |
309 | 327 | break; |
310 | 328 | case BOLT_MODE_SCORE: |
311 | - if (!$answer) break; |
|
329 | + if (!$answer) { |
|
330 | + break; |
|
331 | + } |
|
312 | 332 | $bolt_ex->score = 0; |
313 | 333 | $key = "q_".$bolt_ex->index; |
314 | 334 | if (isset($$key)) { |