]*wp-block-group__inner-container(\s|")[^>]*>)((.|\S|\s)*)/';
if (
( isset( $block['blockName'] ) && 'core/group' !== $block['blockName'] ) ||
1 === preg_match( $group_with_inner_container_regex, $block_content )
) {
return $block_content;
}
/** @psalm-suppress PossiblyUndefinedStringArrayOffset */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
if ( ( isset( $block['blockName'] ) && 'core/group' === $block['blockName'] ) && ! empty( $block['attrs'] ) && isset( $block['attrs']['layout'] ) && isset( $block['attrs']['layout']['type'] ) && 'flex' === $block['attrs']['layout']['type'] ) {
return $block_content;
}
$replace_regex = '/(^\s*
]*wp-block-group[^>]*>)(.*)(<\/div>\s*$)/ms';
$updated_content = preg_replace_callback(
$replace_regex,
array( $this, 'group_block_replace_regex' ),
$block_content
);
return $updated_content;
}
/**
* Add Group block custom class when "Inherit default layout" toggle enabled.
*
* @since 3.8.3
* @access public
*
* @param string $block_content Rendered block content.
* @param array $block Block object.
*
* @return string Filtered block content.
*/
public function add_inherit_width_group_class( $block_content, $block ) {
if (
isset( $block['blockName'] ) && isset( $block['attrs']['layout']['inherit'] ) && $block['attrs']['layout']['inherit']
) {
$block_classgroups = isset( $block['attrs']['className'] ) ? $block['attrs']['className'] : '';
$processed_classnmaes = $block_classgroups . ' inherit-container-width';
$block_content = preg_replace(
'/' . preg_quote( 'class="', '/' ) . '/',
'class="inherit-container-width ',
$block_content,
1
);
}
return $block_content;
}
/**
* Update the block content with inner div.
*
* @since 3.7.1
* @access public
*
* @param mixed $matches block content.
*
* @return string New block content.
*/
public function group_block_replace_regex( $matches ) {
return $matches[1] . '
' . $matches[2] . '
' . $matches[3];
}
}
/**
* Kicking this off by object
*/
new Astra_Gutenberg();