filtered_total_entries();
$is_filter_enabled = $this->is_filter_box_enabled();
$live_payment_count = $this->has_live_payments( $this->form_id );
if ( $this->has_payments() && $count <= 100 ) {
$notice_args = array(
'submissions' => $live_payment_count,
'min_submissions' => 0,
'notice' => /* Translators: 1. Opening tag, 2. closing tag. */ sprintf( esc_html__( "%1\$sCongratulations!%2\$s You have started collecting live payments on this form - that's awesome. We have spent countless hours developing this free plugin for you, and we would really appreciate it if you could drop us a rating on wp.org to help us spread the word and boost our motivation.", 'forminator' ), '', '' ),
'type' => 'one_payment',
);
} else {
$notice_args = array(
'submissions' => $count,
);
}
if ( $this->error_message() ) {
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Output is already escaped.
echo Forminator_Admin::get_red_notice( esc_html( $this->error_message() ) );
}
if ( $this->total_entries() > 0 ) :
$is_registration = ! empty( $this->model->settings['form-type'] )
&& 'registration' === $this->model->settings['form-type'];
?>