render_template(
'admin/views/addons/content-empty',
array(
'title' => esc_html__( 'No Add-Ons', 'forminator' ),
'description' => esc_html__( 'We couldn\'t find any add-on listed. Perhaps refresh the page and try again?', 'forminator' ),
)
);
} else {
?>
$addons ) {
if ( ! empty( $addons ) ) {
++$idx;
Forminator_Admin_Addons_Page::get_instance()->addons_render( 'addons-list', $addons->pid, $addons );
// Close current row and open a new one.
if ( 0 === $idx % 2 ) :
echo '
';
endif;
}
}
?>