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

38 lines
1.3 KiB
PHP

<?php
function areoi_render_block_nav_and_tab_item( $attributes, $content )
{
$class = trim(
areoi_get_class_name_str( array(
'nav-link',
( !empty( $attributes['className'] ) ? $attributes['className'] : '' ),
( !empty( $attributes['active'] ) ? 'active' : '' ),
( !empty( $attributes['disabled'] ) ? 'disabled' : '' ),
) )
. ' ' .
areoi_get_display_class_str( $attributes, 'flex' )
);
$nav_and_tab_item_open = '<a ' . areoi_return_id( $attributes ) . ' class="' . areoi_format_block_id( $attributes['block_id'] ) . ' ' . $class . '"';
if ( !empty( $attributes['url'] ) ) {
$nav_and_tab_item_open .= ' href="' . esc_url( $attributes['url'] ) . '"';
}
if ( !empty( $attributes['url_title'] ) ) {
$nav_and_tab_item_open .= ' title="' . esc_attr( $attributes['url_title'] ) . '"';
}
if ( !empty( $attributes['rel'] ) ) {
$nav_and_tab_item_open .= ' rel="' . esc_attr( $attributes['rel'] ) . '"';
}
if ( !empty( $attributes['linkTarget'] ) ) {
$nav_and_tab_item_open .= ' target="' . esc_attr( $attributes['linkTarget'] ) . '"';
}
$nav_and_tab_item_open .= '>';
$output = '
' . $nav_and_tab_item_open . '
' . ( !empty( $attributes['text'] ) ? wp_kses_post( $attributes['text'] ) : '' ) . '
</a>
';
return $output;
}