64 lines
3.3 KiB
PHP
64 lines
3.3 KiB
PHP
<?php
|
|
function areoi_render_block_row( $attributes, $content )
|
|
{
|
|
$is_grid = areoi2_get_option( 'areoi-customize-options-enable-cssgrid', false );
|
|
|
|
if ( !empty( $attributes['is_flex'] ) ) $is_grid = false;
|
|
|
|
if ( !$is_grid ) {
|
|
$class = trim(
|
|
areoi_get_class_name_str( array(
|
|
'row',
|
|
'areoi-element',
|
|
( !empty( $attributes['className'] ) ? $attributes['className'] : '' ),
|
|
|
|
( empty( $attributes['hide_xs'] ) && !empty( $attributes['vertical_align_xs'] ) ? $attributes['vertical_align_xs'] : '' ),
|
|
( empty( $attributes['hide_sm'] ) && !empty( $attributes['vertical_align_sm'] ) ? $attributes['vertical_align_sm'] : '' ),
|
|
( empty( $attributes['hide_md'] ) && !empty( $attributes['vertical_align_md'] ) ? $attributes['vertical_align_md'] : '' ),
|
|
( empty( $attributes['hide_lg'] ) && !empty( $attributes['vertical_align_lg'] ) ? $attributes['vertical_align_lg'] : '' ),
|
|
( empty( $attributes['hide_xl'] ) && !empty( $attributes['vertical_align_xl'] ) ? $attributes['vertical_align_xl'] : '' ),
|
|
( empty( $attributes['hide_xxl'] ) && !empty( $attributes['vertical_align_xxl'] ) ? $attributes['vertical_align_xxl'] : '' ),
|
|
|
|
( empty( $attributes['hide_xs'] ) && !empty( $attributes['horizontal_align_xs'] ) ? $attributes['horizontal_align_xs'] : '' ),
|
|
( empty( $attributes['hide_sm'] ) && !empty( $attributes['horizontal_align_sm'] ) ? $attributes['horizontal_align_sm'] : '' ),
|
|
( empty( $attributes['hide_md'] ) && !empty( $attributes['horizontal_align_md'] ) ? $attributes['horizontal_align_md'] : '' ),
|
|
( empty( $attributes['hide_lg'] ) && !empty( $attributes['horizontal_align_lg'] ) ? $attributes['horizontal_align_lg'] : '' ),
|
|
( empty( $attributes['hide_xl'] ) && !empty( $attributes['horizontal_align_xl'] ) ? $attributes['horizontal_align_xl'] : '' ),
|
|
( empty( $attributes['hide_xxl'] ) && !empty( $attributes['horizontal_align_xxl'] ) ? $attributes['horizontal_align_xxl'] : '' ),
|
|
|
|
( empty( $attributes['hide_xs'] ) && !empty( $attributes['row_cols_xs'] ) ? $attributes['row_cols_xs'] : '' ),
|
|
( empty( $attributes['hide_sm'] ) && !empty( $attributes['row_cols_sm'] ) ? $attributes['row_cols_sm'] : '' ),
|
|
( empty( $attributes['hide_md'] ) && !empty( $attributes['row_cols_md'] ) ? $attributes['row_cols_md'] : '' ),
|
|
( empty( $attributes['hide_lg'] ) && !empty( $attributes['row_cols_lg'] ) ? $attributes['row_cols_lg'] : '' ),
|
|
( empty( $attributes['hide_xl'] ) && !empty( $attributes['row_cols_xl'] ) ? $attributes['row_cols_xl'] : '' ),
|
|
( empty( $attributes['hide_xxl'] ) && !empty( $attributes['row_cols_xxl'] ) ? $attributes['row_cols_xxl'] : '' )
|
|
) )
|
|
. ' ' .
|
|
areoi_get_display_class_str( $attributes, 'flex' )
|
|
);
|
|
} else {
|
|
$class = trim(
|
|
areoi_get_class_name_str( array(
|
|
'grid',
|
|
'areoi-element',
|
|
( !empty( $attributes['className'] ) ? $attributes['className'] : '' ),
|
|
) )
|
|
. ' ' .
|
|
areoi_get_display_class_str( $attributes, 'flex' )
|
|
);
|
|
}
|
|
|
|
$block_id = ( !empty( $attributes['block_id'] ) ? areoi_format_block_id( $attributes['block_id'] ) : '' );
|
|
|
|
$background = include( AREOI__PLUGIN_DIR . '/blocks/_partials/background.php' );
|
|
|
|
$output = '
|
|
<div ' . areoi_return_id( $attributes ) . ' class="' . $block_id . ' ' . $class . '">
|
|
' . $background . '
|
|
|
|
' . $content . '
|
|
</div>
|
|
';
|
|
|
|
return $output;
|
|
} |