/var/www/hkosl.com/aga/wp-content/plugins/so-widgets-bundle/base/inc/fields/order.class.php


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
<?php

/**
 * Class SiteOrigin_Widget_Field_Order
 */
class SiteOrigin_Widget_Field_Order extends SiteOrigin_Widget_Field_Base {

    protected 
$options;

    protected function 
render_field$value$instance ) {
    
        
$value $this->sanitize_field_input$value$instance );
        
        if( ! empty( 
$this->options ) && ! empty( $value ) ) {
            
?><div class="siteorigin-widget-order-items"><?php
            
foreach( $value as $key ) {
                
?>
                <div class="siteorigin-widget-order-item" data-value="<?php echo esc_attr$key ?>">
                    <?php echo esc_html$this->options$key ] ) ?>
                </div>
                <?php
            
}
            
?></div><?php
        
}

        
?>
        <input
            type="hidden"
            name="<?php echo esc_attr$this->element_name ?>"
            id="<?php echo esc_attr$this->element_id ?>"
            class="siteorigin-widget-input"
            value="<?php echo esc_attrimplode','$value ) ) ?>">
        <?php

    
}

    protected function 
sanitize_field_input$value$instance ) {
        if( 
is_string$value ) ) {
            
$value explode(','$value);
            
$value array_map'trim'$value );
        }
        
        if ( ! 
is_array$value ) ) {
            
$value = array();
        }

        foreach( 
$value as $i => $k ) {
            if( empty( 
$this->options[$k] ) ) {
                unset( 
$value$i ] );
            }
        }

        return 
$value;
    }

    public function 
enqueue_scripts() {
        
wp_enqueue_script'so-order-field'plugin_dir_url(__FILE__) . 'js/order-field' SOW_BUNDLE_JS_SUFFIX '.js', array( 'jquery''jquery-ui-sortable' ), SOW_BUNDLE_VERSION );
        
wp_enqueue_style'so-order-field'plugin_dir_url(__FILE__) . 'css/order-field.css', array( ), SOW_BUNDLE_VERSION );
    }

}