-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathProcessFileEdit.config.php
More file actions
235 lines (215 loc) · 7.04 KB
/
ProcessFileEdit.config.php
File metadata and controls
235 lines (215 loc) · 7.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<?php namespace ProcessWire;
/**
* File Editor settings
*/
class ProcessFileEditConfig extends ModuleConfig {
/**
* Recursively scans a directory for subdirectories and adds them to the provided options array.
* Only directories whose names do not start with a dot (.) are included.
* The resulting array will contain full directory paths as both keys and values.
*
* @param string $path Absolute or relative base path to scan
* @param array<string,string> &$options Output array populated with discovered subdirectory paths
*
* @return void
*/
protected static function scanForSubdirs($path, &$options) {
$iterator = new \RecursiveIteratorIterator(
new \RecursiveDirectoryIterator($path, \RecursiveDirectoryIterator::SKIP_DOTS),
\RecursiveIteratorIterator::SELF_FIRST
);
foreach ($iterator as $item) {
if ($item->isDir() && strpos($item->getFilename(), '.') !== 0) {
$fullPath = $item->getPathname();
$options[$fullPath] = $fullPath;
}
}
}
/**
* Create a list of directories from which to get files.
*
* @param string $paths
* @return array $options
*/
protected static function getDirPathOptions($paths) {
// predefined paths
$rootPath = rtrim($paths->root, '/');
$sitePath = rtrim($paths->site, '/');
$siteModulesPath = rtrim($paths->siteModules, '/');
$templatesPath = rtrim($paths->templates, '/');
$options = [
$rootPath => $rootPath,
$sitePath => $sitePath,
$siteModulesPath => $siteModulesPath,
$templatesPath => $templatesPath,
];
// add directories under /site/templates to the options
self::scanForSubdirs($paths->templates, $options);
return $options;
}
public function __construct() {
$this->add([
[
'name' => 'dirPath',
'type' => 'select',
'label' => $this->_('Directory path'),
'description' => $this->_('Path to the directory from which to get files.'),
'columnWidth' => 34,
'required' => true,
'options' => self::getDirPathOptions($this->config->paths),
'value' => rtrim($this->config->paths->templates, '/'),
],
[
'name' => 'extensionsFilter',
'type' => 'text',
'label' => $this->_('Extensions filter'),
'description' => $this->_('Comma separated list of extensions to filter files by. Example: "php,module,js,css".'),
'columnWidth' => 33,
'required' => true,
'value' => 'php,module,js,css',
],
[
'name' => 'extFilter',
'type' => 'select',
'label' => $this->_('Include or exclude extensions'),
'description' => $this->_('Select to include or exclude files with the defined extensions.'),
'columnWidth' => 33,
'required' => true,
'options' => [
'0' => $this->_('Include files with named extensions'),
'1' => $this->_('Exclude files with named extensions'),
],
'value' => '0',
],
[
'name' => 'lineEndings',
'type' => 'select',
'label' => $this->_('Line endings'),
'description' => $this->_('Type of line ending to use when saving.'),
'columnWidth' => 34,
'required' => true,
'options' => [
'auto' => 'Auto detect',
'win' => 'Windows (\r\n)',
'mac' => 'Mac (\r)',
'nix' => 'Linux (\n)',
'none' => 'none',
],
'value' => 'auto',
],
[
'name' => 'dotFilesExclusion',
'type' => 'checkbox',
'label' => $this->_('Dotfiles exclusion'),
'description' => $this->_('Check to exclude files and folders starting with dot.'),
'columnWidth' => 33,
'required' => false,
'value' => 0,
],
[
'name' => 'backupExtension',
'type' => 'text',
'label' => $this->_('Backup extension'),
'description' => $this->_('Extension to use when backing up edited file. Leave empty for no backup.'),
'columnWidth' => 33,
'required' => false,
'value' => '',
],
[
'name' => 'editorHeight',
'type' => 'text',
'label' => $this->_('Editor height'),
'description' => $this->_('Set the height of the editor. Default is "auto", can be any height like "450px".'),
'columnWidth' => 34,
'required' => false,
'value' => 'auto',
],
[
'name' => 'lineWrapping',
'type' => 'checkbox',
'label' => $this->_('Editor Line Wrapping'),
'description' => $this->_('Make long lines wrap. Default is on.'),
'columnWidth' => 33,
'required' => false,
'value' => 1,
],
[
'name' => 'theme',
'type' => 'select',
'label' => $this->_('Codemirror theme'),
'description' => $this->_('Select the theme used for editor, see **[demo](https://codemirror.net/demo/theme.html)**.'),
'columnWidth' => 33,
'required' => true,
'options' => [
'default' => 'default',
'3024-day' => '3024-day',
'3024-night' => '3024-night',
'abbott' => 'abbott',
'abcdef' => 'abcdef',
'ambiance-mobile' => 'ambiance-mobile',
'ambiance' => 'ambiance',
'ayu-dark' => 'ayu-dark',
'ayu-mirage' => 'ayu-mirage',
'base16-dark' => 'base16-dark',
'base16-light' => 'base16-light',
'bespin' => 'bespin',
'blackboard' => 'blackboard',
'cobalt' => 'cobalt',
'colorforth' => 'colorforth',
'darcula' => 'darcula',
'dracula' => 'dracula',
'duotone-dark' => 'duotone-dark',
'duotone-light' => 'duotone-light',
'eclipse' => 'eclipse',
'elegant' => 'elegant',
'erlang-dark' => 'erlang-dark',
'gruvbox-dark' => 'gruvbox-dark',
'hopscotch' => 'hopscotch',
'icecoder' => 'icecoder',
'idea' => 'idea',
'isotope' => 'isotope',
'juejin' => 'juejin',
'lesser-dark' => 'lesser-dark',
'liquibyte' => 'liquibyte',
'lucario' => 'lucario',
'material-darker' => 'material-darker',
'material-ocean' => 'material-ocean',
'material-palenight' => 'material-palenight',
'material' => 'material',
'mbo' => 'mbo',
'mdn-like' => 'mdn-like',
'midnight' => 'midnight',
'monokai' => 'monokai',
'moxer' => 'moxer',
'neat' => 'neat',
'neo' => 'neo',
'night' => 'night',
'nord' => 'nord',
'oceanic-next' => 'oceanic-next',
'panda-syntax' => 'panda-syntax',
'paraiso-dark' => 'paraiso-dark',
'paraiso-light' => 'paraiso-light',
'pastel-on-dark' => 'pastel-on-dark',
'railscasts' => 'railscasts',
'rubyblue' => 'rubyblue',
'seti' => 'seti',
'shadowfox' => 'shadowfox',
'solarized' => 'solarized',
'ssms' => 'ssms',
'the-matrix' => 'the-matrix',
'tomorrow-night-bright' => 'tomorrow-night-bright',
'tomorrow-night-eighties' => 'tomorrow-night-eighties',
'ttcn' => 'ttcn',
'twilight' => 'twilight',
'vibrant-ink' => 'vibrant-ink',
'xq-dark' => 'xq-dark',
'xq-light' => 'xq-light',
'yeti' => 'yeti',
'yonce' => 'yonce',
'zenburn' => 'zenburn',
],
'value' => 'default',
],
]);
}
}