Files
2026-04-14 13:50:04 -06:00

19 lines
611 B
PHP

<?php
function areoi_render_block_offcanvas_header( $attributes, $content )
{
$class = trim(
areoi_get_class_name_str( array(
'offcanvas-header',
( !empty( $attributes['className'] ) ? $attributes['className'] : '' ),
) )
);
$output = '
<div ' . areoi_return_id( $attributes ) . ' class="' . areoi_format_block_id( $attributes['block_id'] ) . ' ' . $class . '">
<div class="offcanvas-header-content">' . $content . '</div>
<button type="button" class="btn-close text-reset" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
';
return $output;
}