'header', 'data-section-id' => $section_id, ); $current_template = brandy_get_header_template(); $settings = $current_template['row_configurations'][ $row ]; $is_expanded_on_mobile = isset( $settings['expand_on_mobile'] ) ? $settings['expand_on_mobile'] : true; $hidden_classes = brandy_enabled_devices_classes( $settings['enabled_devices'] ); if ( ! is_customize_preview() && ! in_array( $device, $settings['enabled_devices'], true ) ) { return; } $columns = $current_template['placements'][ 'tablet' === $device ? 'mobile' : $device ][ $row ]; $row_layout = isset( $current_template['settings']['layout'] ) ? $current_template['settings']['layout'] : 'full-width'; $columns_has_element = array_filter( $columns, function( $col ) { return count( $col ) > 0; } ); if ( count( $columns_has_element ) <= 0 ) { return; } $attributes['id'] = "brandy-$row-header"; $attributes['class'] = "brandy-child-header brandy-$row-header $hidden_classes " . brandy_get_editable_class( 'row' ); $attributes['class'] .= 'full-width' !== $row_layout ? ' is-boxed' : ''; $attributes['data-layout'] = $row_layout; $attributes['data-hide-stroke-when-stickying'] = ! empty( $settings['hide_stroke_when_stickying'] ) ? 'true' : 'false'; if ( ! empty( $settings['is_constrained'] ) ) { $attributes['data-is-constrained'] = 'true'; } ?>