0byt3m1n1
Path:
/
var
/
www
/
clients
/
client38
/
web37
/
web
/
wp-content
/
plugins
/
us-core
/
config
/
elements
/
[
Home
]
File: vc_row_inner.php
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' ); /** * Configuration for shortcode: vs_row_inner */ $design_options_params = us_config( 'elements_design_options' ); /** * General section * * @var array */ $general_params = array(); // Copy the parameters from vc_row $copy_params = array( 'columns', 'columns_gap', 'columns_layout', 'columns_reverse', 'content_placement', 'columns_type', 'gap', 'laptops_columns', 'mobiles_columns', 'tablets_columns', ); $vc_row_params = us_config( 'elements/vc_row.params', array() ); foreach ( $copy_params as $param_name ) { if ( ! empty( $vc_row_params[ $param_name ] ) ) { // Remove 'elm' name for correct preview in builder unset( $vc_row_params[ $param_name ]['usb_preview']['elm'] ); $general_params[ $param_name ] = $vc_row_params[ $param_name ]; } } /** * @return array */ return array( 'title' => __( 'Inner Row', 'us' ), 'category' => __( 'Containers', 'us' ), 'is_container' => TRUE, // Since the tabs are located on axis X, we will enable // movement along axis X for the current shortcode 'usb_moving_child_x_direction' => TRUE, 'icon' => 'fas fa-border-none', 'as_child' => array( 'only' => 'vc_column,vc_tta_section', ), 'as_parent' => array( 'only' => 'vc_column_inner' ), 'params' => us_set_params_weight( $general_params, $design_options_params ), // Default VC params which are not supported by the theme 'vc_remove_params' => array( 'equal_height', 'rtl_reverse', ), );