
<center><h2><strong>Ubuntu</strong></h2>
­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php

if ( !defined( 'ABSPATH' ) ) {
    exit;
}
if ( !class_exists( 'LSOW_Setup' ) ) {
    class LSOW_Setup
    {
        public function __construct()
        {
            add_filter( 'siteorigin_widgets_widget_folders', array( $this, 'add_widgets_collection' ) );
            add_filter( 'siteorigin_widgets_field_class_prefixes', array( $this, 'custom_fields_class_prefixes' ) );
            add_filter( 'siteorigin_widgets_field_class_paths', array( $this, 'custom_fields_class_paths' ) );
            add_filter( 'siteorigin_panels_widget_dialog_tabs', array( $this, 'add_widget_tabs' ), 20 );
            add_filter( 'siteorigin_panels_widgets', array( $this, 'add_bundle_groups' ), 11 );
            add_filter( 'siteorigin_panels_row_style_fields', array( $this, 'row_style_fields' ) );
            add_filter(
                'siteorigin_panels_row_style_attributes',
                array( $this, 'row_style_attributes' ),
                10,
                2
            );
            // Main filter to add any custom CSS.
            add_filter(
                'siteorigin_panels_css_object',
                array( $this, 'filter_css_object' ),
                10,
                3
            );
            add_filter( 'siteorigin_widgets_default_active', array( $this, 'activate_plugin_widgets' ) );
        }
        
        function row_style_fields( $fields )
        {
            $fields['top_padding'] = array(
                'name'        => __( 'Top Padding (Deprecated)', 'livemesh-so-widgets' ),
                'type'        => 'measurement',
                'group'       => 'layout',
                'description' => __( 'Top Padding for the row. Deprecated - use native padding attributes above.', 'livemesh-so-widgets' ),
                'priority'    => 21,
            );
            $fields['bottom_padding'] = array(
                'name'        => __( 'Bottom Padding (Deprecated)', 'livemesh-so-widgets' ),
                'type'        => 'measurement',
                'group'       => 'layout',
                'description' => __( 'Bottom Padding for the row. Deprecated - use native padding attributes above.', 'livemesh-so-widgets' ),
                'priority'    => 22,
            );
            $fields['tablet_top_padding'] = array(
                'name'        => __( 'Top Padding in Tablet resolution (Deprecated)', 'livemesh-so-widgets' ),
                'type'        => 'measurement',
                'group'       => 'layout',
                'description' => __( 'Top Padding for the row in tablet resolutions. Deprecated - use native padding attributes above.', 'livemesh-so-widgets' ),
                'priority'    => 23,
            );
            $fields['tablet_bottom_padding'] = array(
                'name'        => __( 'Bottom Padding in Tablet resolution (Deprecated)', 'livemesh-so-widgets' ),
                'type'        => 'measurement',
                'group'       => 'layout',
                'description' => __( 'Bottom Padding for the row in tablet resolutions. Deprecated - use native padding attributes above.', 'livemesh-so-widgets' ),
                'priority'    => 24,
            );
            $fields['mobile_top_padding'] = array(
                'name'        => __( 'Top Padding in Mobile resolution (Deprecated)', 'livemesh-so-widgets' ),
                'type'        => 'measurement',
                'group'       => 'layout',
                'description' => __( 'Top Padding for the row in mobile resolutions. Deprecated - use native padding attributes above.', 'livemesh-so-widgets' ),
                'priority'    => 25,
            );
            $fields['mobile_bottom_padding'] = array(
                'name'        => __( 'Bottom Padding in Mobile resolution (Deprecated)', 'livemesh-so-widgets' ),
                'type'        => 'measurement',
                'group'       => 'layout',
                'description' => __( 'Bottom Padding for the row in mobile resolutions. Deprecated - use native padding attributes above.', 'livemesh-so-widgets' ),
                'priority'    => 26,
            );
            /* Add design fields */
            $fields['lsow_dark_bg'] = array(
                'name'     => __( 'Dark Background?', 'livemesh-so-widgets' ),
                'type'     => 'checkbox',
                'group'    => 'design',
                'label'    => __( 'Indicate if this row has a dark background color. Dark color scheme will be applied for all widgets in this row.', 'livemesh-so-widgets' ),
                'default'  => false,
                'priority' => 4,
            );
            return $fields;
        }
        
        function row_style_attributes( $attributes, $args )
        {
            
            if ( !empty($args['lsow_dark_bg']) ) {
                if ( empty($attributes['class']) ) {
                    $attributes['class'] = array();
                }
                $attributes['class'][] = 'lsow-dark-bg';
            }
            
            
            if ( !empty($args['top_padding']) || !empty($args['bottom_padding']) || !empty($args['tablet_top_padding']) || !empty($args['tablet_bottom_padding']) || !empty($args['mobile_top_padding']) || !empty($args['mobile_bottom_padding']) ) {
                if ( empty($attributes['class']) ) {
                    $attributes['class'] = array();
                }
                $attributes['class'][] = 'lsow-row';
                // force creation of a row wrapper so that the styles can be applied.
            }
            
            return $attributes;
        }
        
        function filter_css_object( $css, $panels_data, $post_id )
        {
            foreach ( $panels_data['grids'] as $gi => $grid ) {
                $grid_id = intval( $gi );
                $top_padding = ( isset( $grid['style']['top_padding'] ) ? $grid['style']['top_padding'] : null );
                $bottom_padding = ( isset( $grid['style']['bottom_padding'] ) ? $grid['style']['bottom_padding'] : null );
                // Filter the bottom margin for this row with the arguments
                if ( $top_padding ) {
                    $css->add_row_css(
                        $post_id,
                        $grid_id,
                        ' .lsow-row',
                        array(
                        'padding-top' => $top_padding,
                    ),
                        1920
                    );
                }
                if ( $bottom_padding ) {
                    $css->add_row_css(
                        $post_id,
                        $grid_id,
                        ' .lsow-row',
                        array(
                        'padding-bottom' => $bottom_padding,
                    ),
                        1920
                    );
                }
                $top_padding = ( isset( $grid['style']['tablet_top_padding'] ) ? $grid['style']['tablet_top_padding'] : null );
                $bottom_padding = ( isset( $grid['style']['tablet_bottom_padding'] ) ? $grid['style']['tablet_bottom_padding'] : null );
                // Filter the bottom margin for this row with the arguments
                if ( $top_padding ) {
                    $css->add_row_css(
                        $post_id,
                        $grid_id,
                        ' .lsow-row',
                        array(
                        'padding-top' => $top_padding,
                    ),
                        960
                    );
                }
                if ( $bottom_padding ) {
                    $css->add_row_css(
                        $post_id,
                        $grid_id,
                        ' .lsow-row',
                        array(
                        'padding-bottom' => $bottom_padding,
                    ),
                        960
                    );
                }
                $top_padding = ( isset( $grid['style']['mobile_top_padding'] ) ? $grid['style']['mobile_top_padding'] : null );
                $bottom_padding = ( isset( $grid['style']['mobile_bottom_padding'] ) ? $grid['style']['mobile_bottom_padding'] : null );
                // Filter the bottom margin for this row with the arguments
                if ( $top_padding ) {
                    $css->add_row_css(
                        $post_id,
                        $grid_id,
                        ' .lsow-row',
                        array(
                        'padding-top' => $top_padding,
                    ),
                        478
                    );
                }
                if ( $bottom_padding ) {
                    $css->add_row_css(
                        $post_id,
                        $grid_id,
                        ' .lsow-row',
                        array(
                        'padding-bottom' => $bottom_padding,
                    ),
                        478
                    );
                }
            }
            return $css;
        }
        
        function add_widgets_collection( $folders )
        {
            $folders[] = LSOW_PLUGIN_DIR . 'includes/widgets/';
            return $folders;
        }
        
        // Placing all widgets under the 'SiteOrigin Widgets' Tab
        function add_widget_tabs( $tabs )
        {
            $tabs[] = array(
                'title'  => __( 'Livemesh SiteOrigin Widgets', 'livemesh-so-widgets' ),
                'filter' => array(
                'groups' => array( 'lsow-widgets' ),
            ),
            );
            return $tabs;
        }
        
        // Adding group for all Widgets
        function add_bundle_groups( $widgets )
        {
            foreach ( $widgets as $class => &$widget ) {
                if ( preg_match( '/LSOW_(.*)_Widget/', $class, $matches ) ) {
                    $widget['groups'] = array( 'lsow-widgets' );
                }
            }
            return $widgets;
        }
        
        function custom_fields_class_prefixes( $class_prefixes )
        {
            $class_prefixes[] = 'LSOW_Custom_Field_';
            return $class_prefixes;
        }
        
        function custom_fields_class_paths( $class_paths )
        {
            $class_paths[] = LSOW_PLUGIN_DIR . 'includes/fields/';
            return $class_paths;
        }
        
        function activate_plugin_widgets( $default_widgets )
        {
            $auto_activate = lsow_get_option( 'lsow_autoload_widgets', false );
            if ( !$auto_activate ) {
                return $default_widgets;
            }
            $plugin_widgets = array(
                "lsow-accordion-widget"           => true,
                "lsow-button-widget"              => true,
                "lsow-carousel-widget"            => true,
                "lsow-clients-widget"             => true,
                "lsow-countdown-widget"           => true,
                "lsow-heading-widget"             => true,
                "lsow-hero-image-widget"          => true,
                "lsow-icon-list-widget"           => true,
                "lsow-odometers-widget"           => true,
                "lsow-piecharts-widget"           => true,
                "lsow-portfolio-widget"           => true,
                "lsow-posts-carousel-widget"      => true,
                "lsow-pricing-table-widget"       => true,
                "lsow-services-widget"            => true,
                "lsow-stats-bar-widget"           => true,
                "lsow-tabs-widget"                => true,
                "lsow-team-members-widget"        => true,
                "lsow-testimonials-slider-widget" => true,
                "lsow-testimonials-widget"        => true,
            );
            return wp_parse_args( $plugin_widgets, $default_widgets );
        }
    
    }
}
new LSOW_Setup();