<?php
/**
* Form Templates - Categories.
*
* @package Formidable
*/
if ( ! defined( 'ABSPATH' ) ) {
die( 'You are not allowed to call this page directly.' );
}
?>
<ul class="frm-form-templates-categories frm-flex-col frm-gap-xs" aria-label="<?php esc_attr_e( 'Categories', 'formidable' ); ?>">
<?php foreach ( $categories as $category_slug => $category_data ) { ?>
<?php
$classes = 'frm-form-templates-cat-item frm-flex-box frm-justify-between frm-font-medium';
$aria_label = sprintf(
// translators: %1$s: category name, %2$d: number of items in the category
esc_html__( '%1$s category, %2$d items', 'formidable' ),
esc_html( $category_data['name'] ),
esc_html( $category_data['count'] )
);
if ( 'all-templates' === $category_slug ) {
echo '<li class="frm-form-templates-divider"></li>';
$classes .= ' frm-current';
}
?>
<li class="<?php echo esc_attr( $classes ); ?>" data-category="<?php echo esc_attr( $category_slug ); ?>" role="link" tabindex="0" aria-label="<?php echo esc_attr( $aria_label ); ?>">
<span class="frm-form-templates-cat-text"><?php echo esc_html( $category_data['name'] ); ?></span>
<span class="frm-form-templates-cat-count"><?php echo esc_html( $category_data['count'] ); ?></span>
</li>
<?php
}//end foreach
?>
</ul>
|