๐ Sid Gifari File Manager Pro
v8.0.5 | 2026-08-06 18:41:40 | PHP 8.2.32
๐
/ (Root)
/
home
/
eliteewa
/
public_html
/
wp-content
/
plugins
/
forminator
/
admin
/
views
/
common
/
entries
๐ /home/eliteewa/public_html/wp-content/plugins/forminator/admin/views/common/entries
๐ Refresh
โ๏ธ
Editing: content-none.php
Writable
<?php /** * Template admin/views/common/entries/content-none.php * * @package Forminator */ $none_title = esc_html__( 'Submissions', 'forminator' ); $none_text = esc_html__( 'You havenโt received any form, poll or quiz submissions yet. When you do, youโll be able to view all the data here.', 'forminator' ); $form_id = filter_input( INPUT_GET, 'form_id', FILTER_VALIDATE_INT ); if ( $form_id ) { $none_title = esc_html( forminator_get_form_name( $form_id ) ); $none_text = sprintf( /* translators: %s: Form type helper */ esc_html__( 'You haven\'t received any submissions for this %s yet. When you do, you\'ll be able to view all the data here.', 'forminator' ), esc_html( forminator_get_form_type_helper( true ) ) ); } ?> <div class="sui-box sui-message"> <?php if ( forminator_is_show_branding() ) : ?> <img src="<?php echo esc_url( forminator_plugin_url() . 'assets/images/forminator-no-result.png' ); ?>" srcset="<?php echo esc_url( forminator_plugin_url() . 'assets/images/forminator-no-result.png' ); ?> 1x, <?php echo esc_url( forminator_plugin_url() . 'assets/images/forminator-no-result.png' ); ?> 2x" alt="<?php esc_html_e( 'Forminator', 'forminator' ); ?>" class="sui-image" aria-hidden="true"/> <?php endif; ?> <div class="sui-message-content"> <h2><?php echo esc_html( $none_title ); ?></h2> <p><?php echo esc_html( $none_text ); ?></p> </div> </div>
๐พ Save Changes
โ Cancel