author | ymh <ymh.work@gmail.com> |
Tue, 27 Sep 2022 16:37:53 +0200 | |
changeset 19 | 3d72ae0968f4 |
parent 18 | be944660c56a |
child 21 | 48c4eec2b7e6 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* WordPress Widgets Administration API |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
* @subpackage Administration |
|
7 |
*/ |
|
8 |
||
9 |
/** |
|
10 |
* Display list of the available widgets. |
|
11 |
* |
|
12 |
* @since 2.5.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
13 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
14 |
* @global array $wp_registered_widgets |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
15 |
* @global array $wp_registered_widget_controls |
0 | 16 |
*/ |
17 |
function wp_list_widgets() { |
|
5 | 18 |
global $wp_registered_widgets, $wp_registered_widget_controls; |
0 | 19 |
|
20 |
$sort = $wp_registered_widgets; |
|
21 |
usort( $sort, '_sort_name_callback' ); |
|
22 |
$done = array(); |
|
23 |
||
24 |
foreach ( $sort as $widget ) { |
|
16 | 25 |
if ( in_array( $widget['callback'], $done, true ) ) { // We already showed this multi-widget. |
0 | 26 |
continue; |
9 | 27 |
} |
0 | 28 |
|
29 |
$sidebar = is_active_widget( $widget['callback'], $widget['id'], false, false ); |
|
9 | 30 |
$done[] = $widget['callback']; |
0 | 31 |
|
9 | 32 |
if ( ! isset( $widget['params'][0] ) ) { |
0 | 33 |
$widget['params'][0] = array(); |
9 | 34 |
} |
0 | 35 |
|
9 | 36 |
$args = array( |
37 |
'widget_id' => $widget['id'], |
|
38 |
'widget_name' => $widget['name'], |
|
39 |
'_display' => 'template', |
|
40 |
); |
|
0 | 41 |
|
9 | 42 |
if ( isset( $wp_registered_widget_controls[ $widget['id'] ]['id_base'] ) && isset( $widget['params'][0]['number'] ) ) { |
43 |
$id_base = $wp_registered_widget_controls[ $widget['id'] ]['id_base']; |
|
44 |
$args['_temp_id'] = "$id_base-__i__"; |
|
45 |
$args['_multi_num'] = next_widget_id_number( $id_base ); |
|
46 |
$args['_add'] = 'multi'; |
|
0 | 47 |
} else { |
48 |
$args['_add'] = 'single'; |
|
9 | 49 |
if ( $sidebar ) { |
0 | 50 |
$args['_hide'] = '1'; |
9 | 51 |
} |
0 | 52 |
} |
53 |
||
16 | 54 |
$control_args = array( |
55 |
0 => $args, |
|
56 |
1 => $widget['params'][0], |
|
9 | 57 |
); |
16 | 58 |
$sidebar_args = wp_list_widget_controls_dynamic_sidebar( $control_args ); |
59 |
||
60 |
wp_widget_control( ...$sidebar_args ); |
|
0 | 61 |
} |
62 |
} |
|
63 |
||
64 |
/** |
|
65 |
* Callback to sort array by a 'name' key. |
|
66 |
* |
|
67 |
* @since 3.1.0 |
|
68 |
* @access private |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
69 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
70 |
* @return int |
0 | 71 |
*/ |
72 |
function _sort_name_callback( $a, $b ) { |
|
73 |
return strnatcasecmp( $a['name'], $b['name'] ); |
|
74 |
} |
|
75 |
||
76 |
/** |
|
77 |
* Show the widgets and their settings for a sidebar. |
|
78 |
* Used in the admin widget config screen. |
|
79 |
* |
|
80 |
* @since 2.5.0 |
|
81 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
82 |
* @param string $sidebar Sidebar ID. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
83 |
* @param string $sidebar_name Optional. Sidebar name. Default empty. |
0 | 84 |
*/ |
5 | 85 |
function wp_list_widget_controls( $sidebar, $sidebar_name = '' ) { |
0 | 86 |
add_filter( 'dynamic_sidebar_params', 'wp_list_widget_controls_dynamic_sidebar' ); |
87 |
||
88 |
$description = wp_sidebar_description( $sidebar ); |
|
89 |
||
5 | 90 |
echo '<div id="' . esc_attr( $sidebar ) . '" class="widgets-sortables">'; |
91 |
||
92 |
if ( $sidebar_name ) { |
|
9 | 93 |
$add_to = sprintf( |
16 | 94 |
/* translators: %s: Widgets sidebar name. */ |
9 | 95 |
__( 'Add to: %s' ), |
96 |
$sidebar_name |
|
97 |
); |
|
5 | 98 |
?> |
9 | 99 |
<div class="sidebar-name" data-add-to="<?php echo esc_attr( $add_to ); ?>"> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
100 |
<button type="button" class="handlediv hide-if-no-js" aria-expanded="true"> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
101 |
<span class="screen-reader-text"><?php echo esc_html( $sidebar_name ); ?></span> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
102 |
<span class="toggle-indicator" aria-hidden="true"></span> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
103 |
</button> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
104 |
<h2><?php echo esc_html( $sidebar_name ); ?> <span class="spinner"></span></h2> |
5 | 105 |
</div> |
106 |
<?php |
|
0 | 107 |
} |
108 |
||
5 | 109 |
if ( ! empty( $description ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
110 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
111 |
<div class="sidebar-description"> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
112 |
<p class="description"><?php echo $description; ?></p> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
113 |
</div> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
114 |
<?php |
5 | 115 |
} |
116 |
||
0 | 117 |
dynamic_sidebar( $sidebar ); |
5 | 118 |
|
119 |
echo '</div>'; |
|
0 | 120 |
} |
121 |
||
122 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
123 |
* Retrieves the widget control arguments. |
0 | 124 |
* |
125 |
* @since 2.5.0 |
|
126 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
127 |
* @global array $wp_registered_widgets |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
128 |
* |
0 | 129 |
* @param array $params |
130 |
* @return array |
|
131 |
*/ |
|
132 |
function wp_list_widget_controls_dynamic_sidebar( $params ) { |
|
133 |
global $wp_registered_widgets; |
|
134 |
static $i = 0; |
|
135 |
$i++; |
|
136 |
||
137 |
$widget_id = $params[0]['widget_id']; |
|
9 | 138 |
$id = isset( $params[0]['_temp_id'] ) ? $params[0]['_temp_id'] : $widget_id; |
139 |
$hidden = isset( $params[0]['_hide'] ) ? ' style="display:none;"' : ''; |
|
0 | 140 |
|
141 |
$params[0]['before_widget'] = "<div id='widget-{$i}_{$id}' class='widget'$hidden>"; |
|
9 | 142 |
$params[0]['after_widget'] = '</div>'; |
16 | 143 |
$params[0]['before_title'] = '%BEG_OF_TITLE%'; // Deprecated. |
144 |
$params[0]['after_title'] = '%END_OF_TITLE%'; // Deprecated. |
|
145 |
||
9 | 146 |
if ( is_callable( $wp_registered_widgets[ $widget_id ]['callback'] ) ) { |
147 |
$wp_registered_widgets[ $widget_id ]['_callback'] = $wp_registered_widgets[ $widget_id ]['callback']; |
|
148 |
$wp_registered_widgets[ $widget_id ]['callback'] = 'wp_widget_control'; |
|
0 | 149 |
} |
150 |
||
151 |
return $params; |
|
152 |
} |
|
153 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
154 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
155 |
* @global array $wp_registered_widgets |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
156 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
157 |
* @param string $id_base |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
158 |
* @return int |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
159 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
160 |
function next_widget_id_number( $id_base ) { |
0 | 161 |
global $wp_registered_widgets; |
162 |
$number = 1; |
|
163 |
||
164 |
foreach ( $wp_registered_widgets as $widget_id => $widget ) { |
|
18 | 165 |
if ( preg_match( '/' . preg_quote( $id_base, '/' ) . '-([0-9]+)$/', $widget_id, $matches ) ) { |
9 | 166 |
$number = max( $number, $matches[1] ); |
167 |
} |
|
0 | 168 |
} |
169 |
$number++; |
|
170 |
||
171 |
return $number; |
|
172 |
} |
|
173 |
||
174 |
/** |
|
175 |
* Meta widget used to display the control form for a widget. |
|
176 |
* |
|
177 |
* Called from dynamic_sidebar(). |
|
178 |
* |
|
179 |
* @since 2.5.0 |
|
180 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
181 |
* @global array $wp_registered_widgets |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
182 |
* @global array $wp_registered_widget_controls |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
183 |
* @global array $sidebars_widgets |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
184 |
* |
0 | 185 |
* @param array $sidebar_args |
186 |
* @return array |
|
187 |
*/ |
|
188 |
function wp_widget_control( $sidebar_args ) { |
|
189 |
global $wp_registered_widgets, $wp_registered_widget_controls, $sidebars_widgets; |
|
190 |
||
9 | 191 |
$widget_id = $sidebar_args['widget_id']; |
192 |
$sidebar_id = isset( $sidebar_args['id'] ) ? $sidebar_args['id'] : false; |
|
16 | 193 |
$key = $sidebar_id ? array_search( $widget_id, $sidebars_widgets[ $sidebar_id ], true ) : '-1'; // Position of widget in sidebar. |
9 | 194 |
$control = isset( $wp_registered_widget_controls[ $widget_id ] ) ? $wp_registered_widget_controls[ $widget_id ] : array(); |
195 |
$widget = $wp_registered_widgets[ $widget_id ]; |
|
0 | 196 |
|
9 | 197 |
$id_format = $widget['id']; |
198 |
$widget_number = isset( $control['params'][0]['number'] ) ? $control['params'][0]['number'] : ''; |
|
199 |
$id_base = isset( $control['id_base'] ) ? $control['id_base'] : $widget_id; |
|
200 |
$width = isset( $control['width'] ) ? $control['width'] : ''; |
|
201 |
$height = isset( $control['height'] ) ? $control['height'] : ''; |
|
202 |
$multi_number = isset( $sidebar_args['_multi_num'] ) ? $sidebar_args['_multi_num'] : ''; |
|
203 |
$add_new = isset( $sidebar_args['_add'] ) ? $sidebar_args['_add'] : ''; |
|
0 | 204 |
|
9 | 205 |
$before_form = isset( $sidebar_args['before_form'] ) ? $sidebar_args['before_form'] : '<form method="post">'; |
206 |
$after_form = isset( $sidebar_args['after_form'] ) ? $sidebar_args['after_form'] : '</form>'; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
207 |
$before_widget_content = isset( $sidebar_args['before_widget_content'] ) ? $sidebar_args['before_widget_content'] : '<div class="widget-content">'; |
9 | 208 |
$after_widget_content = isset( $sidebar_args['after_widget_content'] ) ? $sidebar_args['after_widget_content'] : '</div>'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
209 |
|
0 | 210 |
$query_arg = array( 'editwidget' => $widget['id'] ); |
211 |
if ( $add_new ) { |
|
212 |
$query_arg['addnew'] = 1; |
|
213 |
if ( $multi_number ) { |
|
9 | 214 |
$query_arg['num'] = $multi_number; |
0 | 215 |
$query_arg['base'] = $id_base; |
216 |
} |
|
217 |
} else { |
|
218 |
$query_arg['sidebar'] = $sidebar_id; |
|
9 | 219 |
$query_arg['key'] = $key; |
0 | 220 |
} |
221 |
||
5 | 222 |
/* |
223 |
* We aren't showing a widget control, we're outputting a template |
|
224 |
* for a multi-widget control. |
|
225 |
*/ |
|
16 | 226 |
if ( isset( $sidebar_args['_display'] ) && 'template' === $sidebar_args['_display'] && $widget_number ) { |
227 |
// number == -1 implies a template where id numbers are replaced by a generic '__i__'. |
|
0 | 228 |
$control['params'][0]['number'] = -1; |
19 | 229 |
// With id_base widget ID's are constructed like {$id_base}-{$id_number}. |
9 | 230 |
if ( isset( $control['id_base'] ) ) { |
0 | 231 |
$id_format = $control['id_base'] . '-__i__'; |
9 | 232 |
} |
0 | 233 |
} |
234 |
||
9 | 235 |
$wp_registered_widgets[ $widget_id ]['callback'] = $wp_registered_widgets[ $widget_id ]['_callback']; |
236 |
unset( $wp_registered_widgets[ $widget_id ]['_callback'] ); |
|
0 | 237 |
|
238 |
$widget_title = esc_html( strip_tags( $sidebar_args['widget_name'] ) ); |
|
9 | 239 |
$has_form = 'noform'; |
0 | 240 |
|
9 | 241 |
echo $sidebar_args['before_widget']; |
242 |
?> |
|
0 | 243 |
<div class="widget-top"> |
244 |
<div class="widget-title-action"> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
245 |
<button type="button" class="widget-action hide-if-no-js" aria-expanded="false"> |
16 | 246 |
<span class="screen-reader-text edit"> |
247 |
<?php |
|
248 |
/* translators: %s: Widget title. */ |
|
249 |
printf( __( 'Edit widget: %s' ), $widget_title ); |
|
250 |
?> |
|
251 |
</span> |
|
252 |
<span class="screen-reader-text add"> |
|
253 |
<?php |
|
254 |
/* translators: %s: Widget title. */ |
|
255 |
printf( __( 'Add widget: %s' ), $widget_title ); |
|
256 |
?> |
|
257 |
</span> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
258 |
<span class="toggle-indicator" aria-hidden="true"></span> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
259 |
</button> |
0 | 260 |
<a class="widget-control-edit hide-if-js" href="<?php echo esc_url( add_query_arg( $query_arg ) ); ?>"> |
261 |
<span class="edit"><?php _ex( 'Edit', 'widget' ); ?></span> |
|
262 |
<span class="add"><?php _ex( 'Add', 'widget' ); ?></span> |
|
263 |
<span class="screen-reader-text"><?php echo $widget_title; ?></span> |
|
264 |
</a> |
|
265 |
</div> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
266 |
<div class="widget-title"><h3><?php echo $widget_title; ?><span class="in-widget-title"></span></h3></div> |
0 | 267 |
</div> |
268 |
||
269 |
<div class="widget-inside"> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
270 |
<?php echo $before_form; ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
271 |
<?php echo $before_widget_content; ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
272 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
273 |
if ( isset( $control['callback'] ) ) { |
0 | 274 |
$has_form = call_user_func_array( $control['callback'], $control['params'] ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
275 |
} else { |
9 | 276 |
echo "\t\t<p>" . __( 'There are no options for this widget.' ) . "</p>\n"; |
277 |
} |
|
278 |
||
279 |
$noform_class = ''; |
|
280 |
if ( 'noform' === $has_form ) { |
|
281 |
$noform_class = ' widget-control-noform'; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
282 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
283 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
284 |
<?php echo $after_widget_content; ?> |
9 | 285 |
<input type="hidden" name="widget-id" class="widget-id" value="<?php echo esc_attr( $id_format ); ?>" /> |
286 |
<input type="hidden" name="id_base" class="id_base" value="<?php echo esc_attr( $id_base ); ?>" /> |
|
287 |
<input type="hidden" name="widget-width" class="widget-width" value="<?php echo esc_attr( $width ); ?>" /> |
|
288 |
<input type="hidden" name="widget-height" class="widget-height" value="<?php echo esc_attr( $height ); ?>" /> |
|
289 |
<input type="hidden" name="widget_number" class="widget_number" value="<?php echo esc_attr( $widget_number ); ?>" /> |
|
290 |
<input type="hidden" name="multi_number" class="multi_number" value="<?php echo esc_attr( $multi_number ); ?>" /> |
|
291 |
<input type="hidden" name="add_new" class="add_new" value="<?php echo esc_attr( $add_new ); ?>" /> |
|
0 | 292 |
|
293 |
<div class="widget-control-actions"> |
|
294 |
<div class="alignleft"> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
295 |
<button type="button" class="button-link button-link-delete widget-control-remove"><?php _e( 'Delete' ); ?></button> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
296 |
<span class="widget-control-close-wrapper"> |
18 | 297 |
| <button type="button" class="button-link widget-control-close"><?php _e( 'Done' ); ?></button> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
298 |
</span> |
0 | 299 |
</div> |
9 | 300 |
<div class="alignright<?php echo $noform_class; ?>"> |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
301 |
<?php submit_button( __( 'Save' ), 'primary widget-control-save right', 'savewidget', false, array( 'id' => 'widget-' . esc_attr( $id_format ) . '-savewidget' ) ); ?> |
0 | 302 |
<span class="spinner"></span> |
303 |
</div> |
|
304 |
<br class="clear" /> |
|
305 |
</div> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
306 |
<?php echo $after_form; ?> |
0 | 307 |
</div> |
308 |
||
309 |
<div class="widget-description"> |
|
16 | 310 |
<?php |
311 |
$widget_description = wp_widget_description( $widget_id ); |
|
312 |
echo ( $widget_description ) ? "$widget_description\n" : "$widget_title\n"; |
|
313 |
?> |
|
0 | 314 |
</div> |
9 | 315 |
<?php |
0 | 316 |
echo $sidebar_args['after_widget']; |
5 | 317 |
|
0 | 318 |
return $sidebar_args; |
319 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
320 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
321 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
322 |
* @param string $classes |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
323 |
* @return string |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
324 |
*/ |
9 | 325 |
function wp_widgets_access_body_class( $classes ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
326 |
return "$classes widgets_access "; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
327 |
} |