PluginProbe
WP Directory Kit / 1.2.3
WP Directory Kit v1.2.3
1.5.6 1.5.5 1.5.4 1.5.3 trunk 1.1.0 1.1.6 1.1.8 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.8 1.4.0 1.4.1 All 35 releases
wpdirectorykit / elementor-elements / classes / wdk-field-value.php

wdk-field-value.php in WP Directory Kit 1.2.3, at elementor-elements/classes/wdk-field-value.php

547 lines 24.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Wdk\Elementor\Widgets;
4
5 use Wdk\Elementor\Widgets\WdkElementorBase;
6 use Elementor\Widget_Base;
7 use Elementor\Controls_Manager;
8 use Elementor\Utils;
9 use Elementor\Typography;
10 use Elementor\Editor;
11 use Elementor\Plugin;
12 use Elementor\Repeater;
13 use Elementor\Core\Schemes;
14 use Elementor\Icons_Manager;
15 use Elementor\Group_Control_Typography;
16 use Elementor\Group_Control_Border;
17 use Elementor\Group_Control_Box_Shadow;
18
19 if (!defined('ABSPATH'))
20 exit; // Exit if accessed directly
21
22 /**
23 * @since 1.1.0
24 */
25 class WdkFieldValue extends WdkElementorBase {
26
27 public $field_id = NULL;
28 public $fields_list = array();
29
30 public function __construct($data = array(), $args = null) {
31
32 \Elementor\Controls_Manager::add_tab(
33 'tab_conf',
34 esc_html__('Settings', 'wpdirectorykit')
35 );
36
37 \Elementor\Controls_Manager::add_tab(
38 'tab_layout',
39 esc_html__('Layout', 'wpdirectorykit')
40 );
41
42 \Elementor\Controls_Manager::add_tab(
43 'tab_content',
44 esc_html__('Main', 'wpdirectorykit')
45 );
46
47 add_action( 'elementor/editor/after_enqueue_styles', function()
48 {
49 wp_add_inline_style( 'elementor-editor', '.elementor-control-content select option[value*="section"]{color:#fff;background:#000}');
50 } );
51
52 if ($this->is_edit_mode_load()) {
53 $this->enqueue_styles_scripts();
54 }
55
56 parent::__construct($data, $args);
57
58 }
59
60 /**
61 * Retrieve the list of categories the widget belongs to.
62 *
63 * Used to determine where to display the widget in the editor.
64 *
65 * Note that currently Elementor supports only one category.
66 * When multiple categories passed, Elementor uses the first one.
67 *
68 * @since 1.1.0
69 *
70 * @access public
71 *
72 * @return array Widget categories.
73 */
74 public function get_categories() {
75 return [ 'wdk-elementor-listing-preview' ];
76 }
77
78 /**
79 * Retrieve the widget name.
80 *
81 * @since 1.1.0
82 *
83 * @access public
84 *
85 * @return string Widget name.
86 */
87 public function get_name() {
88 return 'wdk-field-value';
89 }
90
91 /**
92 * Retrieve the widget title.
93 *
94 * @since 1.1.0
95 *
96 * @access public
97 *
98 * @return string Widget title.
99 */
100 public function get_title() {
101 return esc_html__('Wdk Field Value', 'wpdirectorykit');
102 }
103
104 /**
105 * Retrieve the widget icon.
106 *
107 * @since 1.1.0
108 *
109 * @access public
110 *
111 * @return string Widget icon.
112 */
113 public function get_icon() {
114 return 'eicon-product-meta';
115 }
116
117 /**
118 * Register the widget controls.
119 *
120 * Adds different input fields to allow the user to change and customize the widget settings.
121 *
122 * @since 1.1.0
123 *
124 * @access protected
125 */
126 protected function register_controls() {
127 $this->generate_controls_conf();
128 $this->generate_controls_layout();
129 $this->generate_controls_styles();
130 $this->generate_controls_content();
131
132 $this->insert_pro_message('1');
133 parent::register_controls();
134 }
135
136 /**
137 * Render the widget output on the frontend.
138 *
139 * Written in PHP and used to generate the final HTML.
140 *
141 * @since 1.1.0
142 *
143 * @access protected
144 */
145 protected function render() {
146 parent::render();
147 global $wdk_listing_id;
148
149 $this->data['id_element'] = $this->get_id();
150 $this->data['settings'] = $this->get_settings();
151
152 $this->data['field_value'] = 'Example Value';
153 $this->data['field_prefix'] = 'prefix';
154 $this->data['field_suffix'] = 'suffix';
155 if(!empty($this->data['settings']['field_id'])){
156 if(strpos($this->data['settings']['field_id'],'__') !== FALSE){
157 $this->data['settings']['field_id'] = substr($this->data['settings']['field_id'], strpos($this->data['settings']['field_id'],'__')+2);
158 }
159
160 if(!Plugin::$instance->editor->is_edit_mode() && !empty($wdk_listing_id)) {
161 if(wdk_field_option($this->data['settings']['field_id'], 'field_type') == "CHECKBOX") {
162 if(wdk_field_value ($this->data['settings']['field_id'], $wdk_listing_id) == 1){
163 $this->data['field_value'] = '<span class="field_checkbox_success">'.$this->generate_icon($this->data['settings']['field_checkbox_icon_success']).'</span>';
164 } else {
165 $this->data['field_value'] = '<span class="field_checkbox_unsuccess">'.$this->generate_icon($this->data['settings']['field_checkbox_icon_unsuccess']).'</span>';
166 }
167 } else if(wdk_field_option($this->data['settings']['field_id'],'field_type') == "INPUTBOX") {
168 $this->data['field_value'] = wdk_field_value ($this->data['settings']['field_id'], $wdk_listing_id);
169
170 if(strpos($this->data['field_value'], 'vimeo.com') !== FALSE)
171 {
172 $this->data['field_value'] = wp_oembed_get($this->data['field_value'], array("width"=>"800", "height"=>"450"));
173 }
174 elseif(strpos($this->data['field_value'], 'watch?v=') !== FALSE)
175 {
176 $embed_code = substr($this->data['field_value'], strpos($this->data['field_value'], 'watch?v=')+8);
177 $this->data['field_value'] = wp_oembed_get('https://www.youtube.com/watch?v='.$embed_code, array("width"=>"800", "height"=>"455"));
178 }
179 elseif(strpos($this->data['field_value'], 'youtu.be/') !== FALSE)
180 {
181 $embed_code = substr($this->data['field_value'], strpos($this->data['field_value'], 'youtu.be/')+9);
182 $this->data['field_value'] = wp_oembed_get('https://www.youtube.com/watch?v='.$embed_code, array("width"=>"800", "height"=>"455"));
183 }
184 elseif(filter_var($this->data['field_value'], FILTER_VALIDATE_URL) !== FALSE && preg_match('/\.(mp4|flv|wmw|ogv|webm|ogg)$/i', $this->data['field_value']))
185 {
186 $this->data['field_value'] = '<video src="'.$this->data['field_value'].'" controls></video> ';
187 }
188 elseif(filter_var($this->data['field_value'] , FILTER_VALIDATE_EMAIL) !== FALSE) {
189 if(wmvc_show_data('link_value',$this->data['settings']) == 'value') {
190 $this->data['field_value'] = '<a href="mailto:'.$this->data['field_value'] .'">'.$this->data['field_value'] .'</a>';
191 } else if(wmvc_show_data('link_value',$this->data['settings']) == 'label') {
192 $this->data['field_value'] = '<a href="mailto:'.$this->data['field_value'] .'">'.wdk_field_label($this->data['settings']['field_id']) .'</a>';
193 } else if(wmvc_show_data('link_value',$this->data['settings']) == 'icon' && wdk_field_option ($this->data['settings']['field_id'], 'icon_id')) {
194 $this->data['field_value'] = '<a href="mailto:'.$this->data['field_value'] .'"><img src="'.esc_url(wdk_image_src(array('icon_id' =>wdk_field_option ($this->data['settings']['field_id'], 'icon_id')), 'full', NULL, 'icon_id')).'"></a>';
195 } else {
196 $this->data['field_value'] = '<a href="mailto:'.$this->data['field_value'] .'">'.wdk_field_label($this->data['settings']['field_id']) .'</a>';
197 }
198 }
199 elseif(filter_var($this->data['field_value'] , FILTER_VALIDATE_URL) !== FALSE) {
200 if(wmvc_show_data('link_value',$this->data['settings']) == 'value') {
201 $this->data['field_value'] = '<a href="'.$this->data['field_value'] .'">'.$this->data['field_value'] .'</a>';
202 } else if(wmvc_show_data('link_value',$this->data['settings']) == 'label') {
203 $this->data['field_value'] = '<a href="'.$this->data['field_value'] .'">'.wdk_field_label($this->data['settings']['field_id']) .'</a>';
204 } else if(wmvc_show_data('link_value',$this->data['settings']) == 'icon' && wdk_field_option ($this->data['settings']['field_id'], 'icon_id')) {
205 $this->data['field_value'] = '<a href="'.$this->data['field_value'] .'"><img src="'.esc_url(wdk_image_src(array('icon_id' =>wdk_field_option ($this->data['settings']['field_id'], 'icon_id')), 'full', NULL, 'icon_id')).'"></a>';
206 } else {
207 $this->data['field_value'] = '<a href="'.$this->data['field_value'] .'">'.wdk_field_label($this->data['settings']['field_id']) .'</a>';
208 }
209 }
210 }
211 elseif($this->data['settings']['field_id'] == 'category_id') {
212 if(wdk_field_value ($this->data['settings']['field_id'], $wdk_listing_id)){
213 $this->WMVC->model('category_m');
214 $tree_data = $this->WMVC->category_m->get(wdk_field_value ($this->data['settings']['field_id'], $wdk_listing_id), TRUE);
215 $this->data['field_value'] = wmvc_show_data('category_title', $tree_data);
216 }
217 }
218 elseif($this->data['settings']['field_id'] == 'location_id') {
219 if(wdk_field_value ($this->data['settings']['field_id'], $wdk_listing_id)){
220 $this->WMVC->model('location_m');
221 $tree_data = $this->WMVC->location_m->get(wdk_field_value ($this->data['settings']['field_id'], $wdk_listing_id), TRUE);
222 $this->data['field_value'] = wmvc_show_data('location_title', $tree_data);
223 }
224 }
225 elseif(wdk_field_option($this->data['settings']['field_id'], 'field_type') == "DATE") {
226 $this->data['field_value'] = wdk_get_date(wdk_field_value ($this->data['settings']['field_id'], $wdk_listing_id));
227 }
228 elseif(strpos($this->data['settings']['field_id'],'date') !== FALSE) {
229 $this->data['field_value'] = wdk_get_date(wdk_field_value ($this->data['settings']['field_id'], $wdk_listing_id));
230 }
231 elseif(
232 wdk_field_option($this->data['settings']['field_id'], 'field_type') == "TEXTAREA" ||
233 $this->data['settings']['field_id'] == 'post_content'
234 ) {
235 global $wp_embed;
236 $this->data['field_value'] = wpautop(wdk_field_value ($this->data['settings']['field_id'], $wdk_listing_id));
237 $this->data['field_value'] = html_entity_decode($wp_embed->autoembed($this->data['field_value'] ));
238 }
239 else {
240 $this->data['field_value'] = wdk_field_value ($this->data['settings']['field_id'], $wdk_listing_id);
241 }
242 } else {
243 if(wdk_field_option($this->data['settings']['field_id'],'field_type') == "CHECKBOX"){
244 $this->data['field_value'] = '<span class="field_checkbox_success">'.$this->generate_icon($this->data['settings']['field_checkbox_icon_success']).'</span>';
245 } elseif($this->data['settings']['field_id'] == 'post_title') {
246 $this->data['field_value'] = esc_html__('Example', 'wpdirectorykit') .' '.esc_html__('Title', 'wpdirectorykit');
247 } elseif($this->data['settings']['field_id'] == 'address') {
248 $this->data['field_value'] = esc_html__('Example', 'wpdirectorykit') .' '.esc_html__('Address', 'wpdirectorykit');
249 } elseif($this->data['settings']['field_id'] == 'post_content') {
250 $this->data['field_value'] = esc_html__('Example', 'wpdirectorykit') .' '.esc_html__('Content', 'wpdirectorykit');
251 } elseif($this->data['settings']['field_id'] == 'post_title') {
252 $this->data['field_value'] = esc_html__('Example', 'wpdirectorykit') .' '.esc_html__('Title', 'wpdirectorykit');
253 } elseif($this->data['settings']['field_id'] == 'counter_views') {
254 $this->data['field_label'] = esc_html__('Example', 'wpdirectorykit') .' '.esc_html__('Views counter', 'wpdirectorykit');
255 }
256 else{
257 $this->data['field_value'] = esc_html__('Example', 'wpdirectorykit') .' '. wdk_field_label($this->data['settings']['field_id']);
258 }
259 }
260 $this->data['field_prefix'] = wdk_field_option ($this->data['settings']['field_id'], 'prefix');
261 $this->data['field_suffix'] = wdk_field_option ($this->data['settings']['field_id'], 'suffix');
262 }
263
264 $this->data['is_edit_mode']= false;
265 if(Plugin::$instance->editor->is_edit_mode() || empty($wdk_listing_id)) {
266 $this->data['is_edit_mode']= true;
267 if(is_intval($this->data['settings']['field_id']) && wdk_field_option($this->data['settings']['field_id'], 'is_visible_frontend') != 1) {
268 $this->data['field_value'] .= ' <span class="dashicons dashicons-hidden" style="color:red"></span>';
269 }
270 } else {
271 if(is_intval($this->data['settings']['field_id']) && wdk_field_option($this->data['settings']['field_id'], 'is_visible_frontend') != 1) {
272 return false;
273 }
274
275 if(wdk_field_value('category_id', $wdk_listing_id) && wdk_depend_is_hidden_field($this->data['settings']['field_id'], wdk_field_value('category_id', $wdk_listing_id))) {
276 return false;
277 }
278
279 /* return false if no content */
280 if($this->data['settings']['hide_onempty'] == 'yes' && wdk_field_value($this->data['settings']['field_id'], $wdk_listing_id) == '')
281 return false;
282
283 $this->data['field_prefix'] = apply_filters( 'wpdirectorykit/listing/field/prefix', $this->data['field_prefix'], $this->data['settings']['field_id']);
284 $this->data['field_suffix'] = apply_filters( 'wpdirectorykit/listing/field/suffix',$this->data['field_suffix'], $this->data['settings']['field_id']);
285
286 /* price format implement */
287 if(function_exists('run_wdk_currency_conversion') && wdk_currencies_is_price_field($this->data['settings']['field_id'])) {
288 /* if currency_conversion and field is price */
289 $value = strip_tags(apply_filters( 'wpdirectorykit/listing/field/value', wdk_filter_decimal($this->data['field_value']), $this->data['settings']['field_id'], FALSE));
290 $this->data['field_value'] = esc_html(wdk_number_format_i18n($value));
291 } elseif(wdk_field_option($this->data['settings']['field_id'], 'is_price_format') && wdk_field_option($this->data['settings']['field_id'], 'field_type') == 'NUMBER' && !empty($this->data['field_value'])) {
292 /* if field enabled is_price_format and field type is number*/
293 $value = strip_tags(apply_filters( 'wpdirectorykit/listing/field/value', wdk_filter_decimal($this->data['field_value']), $this->data['settings']['field_id'], FALSE));
294 $this->data['field_value'] = esc_html(wdk_number_format_i18n($value));
295 } else {
296 /* without number format */
297 $this->data['field_value'] = apply_filters( 'wpdirectorykit/listing/field/value', $this->data['field_value'], $this->data['settings']['field_id']);
298 }
299 }
300
301 echo $this->view('wdk-field-value', $this->data);
302 }
303
304
305 private function generate_controls_conf() {
306 $this->start_controls_section(
307 'tab_conf_main_section',
308 [
309 'label' => esc_html__('Main', 'wpdirectorykit'),
310 'tab' => '1',
311 ]
312 );
313
314
315 $this->add_control(
316 'html_tag',
317 [
318 'label' => __( 'HTML Tag', 'wpdirectorykit' ),
319 'type' => \Elementor\Controls_Manager::SELECT,
320 'default' => 'span',
321 'options' => array(
322 ''=>__( 'Default', 'wpdirectorykit' ),
323 'h1'=>'H1',
324 'h2'=>'H2',
325 'h3'=>'H3',
326 'h4'=>'H4',
327 'h5'=>'H5',
328 'h6'=>'H6',
329 'span'=>'span',
330 'address'=>'address',
331 'strong'=>'strong',
332 'div'=>'div',
333 'p'=>'p',
334 'q'=>'q',
335 'time'=>'time',
336 ),
337 'separator' => 'after',
338 ]
339 );
340
341 $WMVC = &wdk_get_instance();
342 $WMVC->model('field_m');
343 $fields_data = $WMVC->field_m->get();
344 $fields_list = array('' => esc_html__('Not Selected', 'wpdirectorykit'));
345 $order_i = 0;
346
347 $fields_list [(++$order_i).'__section'] = esc_html__('-- Section Custom fields --', 'wpdirectorykit');
348 $fields_list [(++$order_i).'__idlisting'] = esc_html__('Id listing', 'wpdirectorykit');
349 $fields_list [(++$order_i).'__post_id'] = esc_html__('Post Id', 'wpdirectorykit');
350 $fields_list [(++$order_i).'__counter_views'] = esc_html__('Views counter', 'wpdirectorykit');
351 $fields_list [(++$order_i).'__lat'] = esc_html__('Gps Lat', 'wpdirectorykit');
352 $fields_list [(++$order_i).'__lng'] = esc_html__('Gps Lng', 'wpdirectorykit');
353 $fields_list [(++$order_i).'__date'] = esc_html__('Date', 'wpdirectorykit');
354 $fields_list [(++$order_i).'__date_modified'] = esc_html__('Date Modified', 'wpdirectorykit');
355 $fields_list [(++$order_i).'__post_title'] = esc_html__('WP Title', 'wpdirectorykit');
356 $fields_list [(++$order_i).'__post_content'] = esc_html__('WP Content', 'wpdirectorykit');
357 $fields_list [(++$order_i).'__address'] = esc_html__('Address', 'wpdirectorykit');
358 $fields_list [(++$order_i).'__category_id'] = esc_html__('Category', 'wpdirectorykit');
359 $fields_list [(++$order_i).'__location_id'] = esc_html__('Location', 'wpdirectorykit');
360
361 foreach($fields_data as $field)
362 {
363 if(wmvc_show_data('field_type', $field) == 'SECTION') {
364 $fields_list [(++$order_i).'section__'.wmvc_show_data('idfield', $field)] = '-- '.esc_html__('Section', 'wpdirectorykit').' '.wmvc_show_data('field_label', $field).' --';
365 } else {
366 $fields_list[(++$order_i).'__'.wmvc_show_data('idfield', $field)] = '#'.wmvc_show_data('idfield', $field).' '.wmvc_show_data('field_label', $field).'['.wmvc_show_data('field_type', $field).']';
367 }
368 }
369
370 $this->add_control(
371 'field_id',
372 [
373 'label' => __( 'Field id', 'wpdirectorykit' ),
374 'type' => \Elementor\Controls_Manager::SELECT,
375 'default' => '',
376 'options' => $fields_list,
377 'separator' => 'after',
378 ]
379 );
380
381 $this->add_control(
382 'hide_onempty',
383 [
384 'label' => __( 'Hide if empty', 'wpdirectorykit' ),
385 'type' => \Elementor\Controls_Manager::SWITCHER,
386 'label_on' => __( 'True', 'wpdirectorykit' ),
387 'label_off' => __( 'False', 'wpdirectorykit' ),
388 'return_value' => 'yes',
389 'default' => '',
390 ]
391 );
392
393 $this->add_control(
394 'link_value',
395 [
396 'label' => esc_html__('in case of link detected', 'wpdirectorykit'),
397 'type' => Controls_Manager::SELECT,
398 'options' => [
399 '' => esc_html__('Default', 'wpdirectorykit'),
400 'value' => esc_html__('show value', 'wpdirectorykit'),
401 'label' => esc_html__('show field label', 'wpdirectorykit'),
402 'icon' => esc_html__('show field icon', 'wpdirectorykit'),
403 ],
404 ]
405 );
406
407 $this->end_controls_section();
408
409 }
410
411 private function generate_controls_layout() {
412 }
413
414
415 private function generate_controls_styles() {
416 $items = [
417 [
418 'key'=>'field_value',
419 'label'=> esc_html__('Field Value', 'wpdirectorykit'),
420 'selector'=>'{{WRAPPER}} .wdk-field-value .value, {{WRAPPER}} .wdk-field-value .value p',
421 'selector_hover'=>'{{WRAPPER}} .wdk-field-value .value%1$s, {{WRAPPER}} .wdk-field-value .value%1$s p',
422 'options'=>'full',
423 ],
424 [
425 'key'=>'field_prefix',
426 'label'=> esc_html__('Field Prefix', 'wpdirectorykit'),
427 'selector'=>'{{WRAPPER}} .wdk-field-value .prefix',
428 'selector_hover'=>'{{WRAPPER}} .wdk-field-value .prefix%1$s',
429 'options'=>'full',
430 ],
431 [
432 'key'=>'field_suffix',
433 'label'=> esc_html__('Field Suffix', 'wpdirectorykit'),
434 'selector'=>'{{WRAPPER}} .wdk-field-value .suffix',
435 'selector_hover'=>'{{WRAPPER}} .wdk-field-value .suffix%1$s',
436 'options'=>'full',
437 ]
438 ];
439
440 foreach ($items as $item) {
441 $this->start_controls_section(
442 $item['key'].'_section',
443 [
444 'label' => $item['label'],
445 'tab' => 'tab_layout'
446 ]
447 );
448
449 if( $item ['key'] == 'field_value'){
450 $selectors = array(
451 'normal' => '{{WRAPPER}} .wdk-field-value',
452 );
453 $this->generate_renders_tabs($selectors, $item['key'].'_dynamic_align', ['align']);
454 }
455
456 $selectors = array();
457 if(!empty($item['selector']))
458 $selectors['normal'] = $item['selector'];
459
460 if(!empty($item['selector_hover']))
461 $selectors['hover'] = $item['selector_hover'];
462
463 if(!empty($item['selector_focus']))
464 $selectors['focus'] = $item['selector_hover'];
465
466 $this->generate_renders_tabs($selectors, $item['key'].'_dynamic', $item['options'], ['align']);
467
468 $this->end_controls_section();
469 /* END special for some elements */
470 }
471
472
473 $this->start_controls_section(
474 'field_checkbox_icon',
475 [
476 'label' => esc_html__('Checkbox', 'wpdirectorykit'),
477 'tab' => Controls_Manager::TAB_STYLE,
478 ]
479 );
480
481 $this->add_responsive_control(
482 'field_checkbox_icon_success_header',
483 [
484 'label' => esc_html__('Success checkbox', 'wpdirectorykit'),
485 'type' => Controls_Manager::HEADING,
486 'separator' => 'before',
487 ]
488 );
489
490 $this->add_control(
491 'field_checkbox_icon_success',
492 [
493 'label' => esc_html__('Icon', 'wpdirectorykit'),
494 'type' => Controls_Manager::ICONS,
495 'label_block' => true,
496 'default' => [
497 'value' => 'fa fa-check',
498 'library' => 'solid',
499 ],
500 ]
501 );
502
503 $selectors = array(
504 'normal' => '{{WRAPPER}} .field_checkbox_success',
505 );
506 $this->generate_renders_tabs($selectors, 'field_checkbox_icon_success_dynamic', 'full');
507
508
509 $this->add_responsive_control(
510 'field_checkbox_icon_unsuccess_header',
511 [
512 'label' => esc_html__('Unsuccess checkbox', 'wpdirectorykit'),
513 'type' => Controls_Manager::HEADING,
514 'separator' => 'before',
515 ]
516 );
517
518 $this->add_control(
519 'field_checkbox_icon_unsuccess',
520 [
521 'label' => esc_html__('Icon', 'wpdirectorykit'),
522 'type' => Controls_Manager::ICONS,
523 'label_block' => true,
524 'default' => [
525 'value' => 'fa fa-close',
526 'library' => 'solid',
527 ],
528 ]
529 );
530
531 $selectors = array(
532 'normal' => '{{WRAPPER}} .field_checkbox_unsuccess',
533 );
534 $this->generate_renders_tabs($selectors, 'field_checkbox_icon_unsuccess_dynamic', 'full');
535
536 $this->end_controls_section();
537 }
538
539 private function generate_controls_content() {
540
541 }
542
543 public function enqueue_styles_scripts() {
544
545 }
546 }
547