✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server366.web-hosting.com ​🇻​♯➤ 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 67.223.118.204 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.243
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/builxejc/public_html/wp-content/plugins/wordpress-popup/views/admin//entries.php
<?php
/**
 * Main wrapper for the Email lists (entries/form submissions) page.
 *
 * @package Hustle
 * @since 4.0.0
 */

// Email Lists: Images.
if ( ! $this->is_branding_hidden ) :
	$image_attrs = array(
		'path'        => self::$plugin_url . 'assets/images/no-result.png',
		'retina_path' => self::$plugin_url . 'assets/images/no-result@2x.png',
	);
else :
	$image_attrs = array(
		'path'   => $this->branding_image,
		'width'  => 172,
		'height' => 192,
		'class'  => 'sui-image',
	);
endif;
?>

<div class="sui-header">
	<h1 class="sui-header-title"><?php esc_html_e( 'Email Lists', 'hustle' ); ?></h1>
	<?php $this->render( 'admin/commons/view-documentation', array( 'docs_section' => 'email-lists' ) ); ?>
</div>

<div id="hustle-floating-notifications-wrapper" class="sui-floating-notices"></div>

<?php
// Search Bar.
$this->render(
	'admin/email-lists/search-bar',
	array(
		'has_entries' => ( $is_module_selected && ! empty( $entries ) ),
		'module'      => $module,
	)
);
?>

<?php
// If a module is selected, get its entries. Show a placeholder message otherwise.
if ( $is_module_selected ) :

	$integrations_url = add_query_arg(
		array(
			'page'    => $module->get_wizard_page(),
			'id'      => $module->id,
			'section' => 'integrations',
		),
		get_admin_url( get_current_blog_id(), 'admin.php' )
	);

	$add_local_list = sprintf(
		/* translators: 1: module name, 2: opening 'a' tag with the module's edit integrations url, 3: closing 'a' tag 4. Plugin name */
		esc_html__( '%4$s\'s Local List is inactive for this %1$s. %2$sActivate Local List%3$s integration for this module to store the submissions in your database and see those submissions here.', 'hustle' ),
		esc_html( $module_name ),
		'<a href="' . esc_url( $integrations_url ) . '" target="_blank">',
		'</a>',
		Opt_In_Utils::get_plugin_name()
	);

	// If there are entries, show them. Show a placeholder message otherwise.
	if ( ! empty( $entries ) || $is_filtered ) :

		// List Emails.
		$this->render(
			'admin/email-lists/emails-list',
			array(
				'module'         => $module,
				'no_local_list'  => $no_local_list,
				'add_local_list' => $add_local_list,
				'wizard_page'    => add_query_arg(
					array(
						'page'    => $module->get_wizard_page(),
						'id'      => $module->module_id,
						'section' => 'integrations',
					),
					'admin.php'
				),
				'form_fields'    => $module->get_form_fields(),
			)
		);
		?>

	<?php elseif ( $no_local_list ) : ?>

		<div class="sui-box sui-message">
			<?php $this->render( 'admin/image-markup', $image_attrs ); ?>
			<div class="sui-message-content">

				<h2><?php esc_html_e( 'Local List is Inactive!', 'hustle' ); ?></h2>

				<p><?php echo wp_kses_post( $add_local_list ); ?></p>

			</div>

		</div>

	<?php else : ?>

		<div class="sui-box sui-message">
			<?php $this->render( 'admin/image-markup', $image_attrs ); ?>
			<div class="sui-message-content">

				<h2><?php esc_html_e( 'No Emails Collected!', 'hustle' ); ?></h2>

				<p><?php /* translators: module name */ printf( esc_html__( "Your %s hasn't collected any emails yet. When it starts converting, you'll be able to view the collected emails here.", 'hustle' ), esc_html( $module_name ) ); ?></p>

			</div>

		</div>

	<?php endif; ?>

<?php else : ?>

	<?php if ( 0 === $global_entries ) { ?>

		<div class="sui-box sui-message">
			<?php $this->render( 'admin/image-markup', $image_attrs ); ?>
			<div class="sui-message-content">

				<h2><?php esc_html_e( 'Email Lists', 'hustle' ); ?></h2>

				<p><?php esc_html_e( "You haven't yet collected emails through email opt-ins inside any of your popup, slide-in or embed. When you do, you'll be able to view the email list here.", 'hustle' ); ?></p>

			</div>

		</div>

	<?php } else { ?>

		<div class="sui-box sui-message">
			<?php $this->render( 'admin/image-markup', $image_attrs ); ?>
			<div class="sui-message-content">

				<h2><?php esc_html_e( 'Almost there!', 'hustle' ); ?></h2>

				<p><?php esc_html_e( 'Select the popup, slide-in or embed to view the corresponding email list.', 'hustle' ); ?></p>

			</div>

		</div>

	<?php } ?>

<?php endif; ?>

<?php
// Global Footer.
$this->render( 'admin/global/sui-components/sui-footer' );
?>

<?php
// DIALOG: Dialog Filter for MOBILE.
$this->render(
	'admin/email-lists/dialog-filter',
	array( 'module' => $module )
);
?>

<?php
// DIALOG: Delete Email.
$this->render( 'admin/commons/sui-listing/dialogs/delete-module', array() );

// DIALOG: Dissmiss migrate tracking notice modal confirmation.
if ( Hustle_Notifications::is_show_migrate_tracking_notice() ) {
	$this->render( 'admin/dialogs/migrate-dismiss-confirmation' );
}
?>


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
9 Jun 2026 8.38 AM
builxejc / builxejc
0755
commons
--
9 Jun 2026 8.38 AM
builxejc / builxejc
0755
dashboard
--
9 Jun 2026 8.38 AM
builxejc / builxejc
0755
dialogs
--
9 Jun 2026 8.38 AM
builxejc / builxejc
0755
email-lists
--
9 Jun 2026 8.38 AM
builxejc / builxejc
0755
embedded
--
9 Jun 2026 8.38 AM
builxejc / builxejc
0755
global
--
9 Jun 2026 8.38 AM
builxejc / builxejc
0755
integrations
--
9 Jun 2026 8.38 AM
builxejc / builxejc
0755
integrations-page
--
9 Jun 2026 8.38 AM
builxejc / builxejc
0755
popup
--
9 Jun 2026 8.38 AM
builxejc / builxejc
0755
settings
--
9 Jun 2026 8.38 AM
builxejc / builxejc
0755
slidein
--
9 Jun 2026 8.38 AM
builxejc / builxejc
0755
sshare
--
9 Jun 2026 8.38 AM
builxejc / builxejc
0755
dashboard.php
1.476 KB
25 May 2026 1.17 PM
builxejc / builxejc
0644
entries.php
4.55 KB
12 Oct 2023 2.01 PM
builxejc / builxejc
0644
image-markup.php
1.051 KB
17 Apr 2023 3.18 PM
builxejc / builxejc
0644
integrations.php
2.255 KB
25 May 2026 1.17 PM
builxejc / builxejc
0644
settings.php
3.883 KB
25 May 2026 1.17 PM
builxejc / builxejc
0644
tutorials.php
0.476 KB
13 Oct 2022 9.51 AM
builxejc / builxejc
0644
upsell.php
6.456 KB
4 Jul 2023 6.08 PM
builxejc / builxejc
0644
widget-analytics.php
4.78 KB
17 Apr 2023 3.18 PM
builxejc / builxejc
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF