HEX
Server: Apache/2.4.65 (Debian)
System: Linux web6 5.10.0-36-amd64 #1 SMP Debian 5.10.244-1 (2025-09-29) x86_64
User: innocamp (1028)
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: //home/bookcc/public_html/wp-content/plugins/apollo13-framework-extensions/features/maintenance.php
<?php
/**
 * redirect to chosen page if needed
 * @since  1.4.0
 */
function a13fe_waiting_page(){
	global $apollo13framework_a13, $post;
	$waiting_mode = $apollo13framework_a13->get_option( 'maintenance_mode' );
	$wait_page = (int)$apollo13framework_a13->get_option( 'maintenance_mode_page' );

	if ( $waiting_mode == 'on' && $wait_page > 0 && ( 'publish' == get_post_status ( $wait_page ) ) ) {
		//only for existing pages
		if ( $post->ID != $wait_page ) {
			wp_redirect( get_permalink( $wait_page ) );
			exit;
		}
		else{
			add_filter('apollo13framework_only_content','a13fe_only_content');
		}
	}
}

/*
 * filter callback to inform that header and theme footer will not be displayed
 * @since  1.4.0
 */
function a13fe_only_content(){
	return true;
}