Files
Pruebas/Wordpress/wordpress/wp-content/plugins/all-bootstrap-blocks/blocks/div.php
2026-04-14 13:50:04 -06:00

45 lines
1.2 KiB
PHP

<?php
function areoi_render_block_div( $attributes, $content )
{
$class = trim(
areoi_get_class_name_str( array(
'areoi-element',
( !empty( $attributes['className'] ) ? $attributes['className'] : '' ),
areoi_get_utilities_classes( $attributes )
) )
. ' ' .
areoi_get_display_class_str( $attributes, 'block' )
);
$url = null;
if ( !empty( $attributes['url'] ) ) {
$url = '
<a class="areoi-full-link"
';
if ( !empty( $attributes['url'] ) ) {
$url .= ' href="' . esc_url( $attributes['url'] ) . '"';
}
if ( !empty( $attributes['url_title'] ) ) {
$url .= ' title="' . esc_attr( $attributes['url_title'] ) . '"';
}
if ( !empty( $attributes['rel'] ) ) {
$url .= ' rel="' . esc_attr( $attributes['rel'] ) . '"';
}
if ( !empty( $attributes['linkTarget'] ) ) {
$url .= ' target="' . esc_attr( $attributes['linkTarget'] ) . '"';
}
$url .= '></a>';
}
$background = include( AREOI__PLUGIN_DIR . '/blocks/_partials/background.php' );
$output = '
<div ' . areoi_return_id( $attributes ) . ' class="' . areoi_format_block_id( $attributes['block_id'] ) . ' ' . $class . '">
' . $background . '
' . $content . '
' . $url . '
</div>
';
return $output;
}