Uname: Linux premium294.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
Software: LiteSpeed
PHP version: 8.1.32 [ PHP INFO ] PHP os: Linux
Server Ip: 104.21.64.1
Your Ip: 216.73.216.223
User: mjbynoyq (1574) | Group: mjbynoyq (1570)
Safe Mode: OFF
Disable Function:
NONE

name : template.php
<?php

function oceancp_output_ocean_extra_notice_enqueue_scripts( $hook ) {
	if ( ! apply_filters(
		'oceanwp:admin:display-ocean-extra-plugin-notice',
		true
	) ) {
		return;
	}

	if ( ! current_user_can( 'activate_plugins' ) ) {
		return;
	}

	$onboaridng_completed = get_option('owp_onboarding_completed');

	if ( $onboaridng_completed ) {
		return;
	}

	$first_dismissed  = get_option('oceanwp_plugin_notice_first_dismissed');
	$permanent_dismiss = get_option('oceanwp_plugin_notice_permanently_dismissed');

	if ( $permanent_dismiss ) {
		return;
	}

	$theme_install      = get_option( 'oceanwp_theme_installed_version' );
	$oe_installed_ver   = get_option( 'ocean-extra-installed-version' );

	$current_oe_version = '';

	if ( file_exists( WP_PLUGIN_DIR . '/ocean-extra/ocean-extra.php' ) ) {
		if ( current_user_can( 'install_plugins' ) && function_exists('oceanwp_theme_panel') ) {
			$current_oe_version = oceanwp_theme_panel()->get_current_plugin_version( 'ocean-extra/ocean-extra.php' );
		}
	}

	$parent_theme  = wp_get_theme()->parent();
	$current_theme = wp_get_theme();
	$theme_version = '';

	if ( ! empty( $parent_theme) ) {
		$theme_version = $parent_theme->get('Version');
	} else {
		$theme_version = $current_theme->get('Version');
	}

	if (
		( $theme_install && version_compare( $theme_install, $theme_version, '<' ) ) ||
		( $oe_installed_ver && version_compare( $oe_installed_ver, $current_oe_version, '<' ) )
	) {
		return;
	}

	wp_enqueue_script( 'ocean-extra-plugin-notice-js', OCEANWP_INC_DIR_URI . 'activation-notice/assets/js/notice.min.js', array( 'jquery' ), OCEANWP_THEME_VERSION, true );
	wp_localize_script(
		'ocean-extra-plugin-notice-js',
		'owp_notification_i18n',
		array(
			'activating'            => __( 'Activating...', 'oceanwp' ),
			'installing_activating' => __( 'Installing & activating...', 'oceanwp' ),
		)
	);
	wp_register_style( 'ocean-extra-plugin-notice-css', OCEANWP_INC_DIR_URI . 'activation-notice/assets/css/notice.min.css', array(), OCEANWP_THEME_VERSION );
	wp_enqueue_style( 'ocean-extra-plugin-notice-css' );
}
add_action( 'admin_enqueue_scripts', 'oceancp_output_ocean_extra_notice_enqueue_scripts' );

add_action(
	'admin_notices',
	function () {
		oceancp_output_ocean_extra_notice();
	}
);

function oceancp_output_ocean_extra_notice() {
	if ( ! apply_filters(
		'oceanwp:admin:display-ocean-extra-plugin-notice',
		true
	) ) {
		return;
	}

	if ( ! current_user_can( 'activate_plugins' ) ) {
		return;
	}

	$onboaridng_completed = get_option('owp_onboarding_completed');

	if ( $onboaridng_completed ) {
		return;
	}

	$first_dismissed  = get_option('oceanwp_plugin_notice_first_dismissed');
	$permanent_dismiss = get_option('oceanwp_plugin_notice_permanently_dismissed');

	if ( $permanent_dismiss ) {
		return;
	}

	$is_second_notice = false;
	if ( $first_dismissed ) {
		if ( time() - (int) $first_dismissed > DAY_IN_SECONDS ) {
			$is_second_notice = true;
		} else {
			return;
		}
	}

	$theme_install      = get_option( 'oceanwp_theme_installed_version' );
	$oe_installed_ver   = get_option( 'ocean-extra-installed-version' );

	$current_oe_version = '';

	if ( file_exists( WP_PLUGIN_DIR . '/ocean-extra/ocean-extra.php' ) ) {
		if ( current_user_can( 'install_plugins' ) && function_exists('oceanwp_theme_panel') ) {
			$current_oe_version = oceanwp_theme_panel()->get_current_plugin_version( 'ocean-extra/ocean-extra.php' );
		}
	}

	$parent_theme  = wp_get_theme()->parent();
	$current_theme = wp_get_theme();
	$theme_version = '';

	if ( ! empty( $parent_theme) ) {
		$theme_version = $parent_theme->get('Version');
	} else {
		$theme_version = $current_theme->get('Version');
	}

	if (
		( $theme_install && version_compare( $theme_install, $theme_version, '<' ) ) ||
		( $oe_installed_ver && version_compare( $oe_installed_ver, $current_oe_version, '<' ) )
	) {
		return;
	}

	echo '<div class="notice notice-ocean-extra-plugin notice-ocean-onboarding">';
	echo '<div class="notice-ocean-extra-plugin-root">';

	?>

	<div class="owp-ocean-extra-plugin-inner">
		<button type="button" class="notice-dismiss">
			<span class="screen-reader-text">
				<?php _e( 'Dismiss this notice.', 'oceanwp' ); ?>
			</span>
		</button>

		<div class="owp-notification-content">
			<div class="owp-notification-content-wrap">
				<?php
				if ( ! $is_second_notice ) :
					ocean_first_notice_content();
				else :
					ocean_second_notice_content();
				endif;
				?>
			</div>
			<div class="owp-notification-content-image">
				<img src="<?php echo esc_url( OCEANWP_INC_DIR_URI . '/activation-notice/assets/img/onboarding-notice-banner.jpg' ); ?>" />
			</div>
		</div>
	</div>
	<?php

	echo '</div>';
	echo '</div>';
}

function ocean_first_notice_content() {
	?>

	<span class="notice-subheading"><?php esc_html_e( 'Thanks for choosing OceanWP. Excellent choice! &#x1F31F;', 'oceanwp' ); ?></span>
	<h2><?php esc_html_e( 'It\'s like Magic! Start Your Website in Minutes &#x2728;', 'oceanwp' ); ?></h2>
	<p>
		<?php esc_html_e( 'Save time and don\'t worry about design.', 'oceanwp' ); ?><br>
		<?php esc_html_e( 'Launch the Setup Wizard, pick a stunning full site template, and watch your site come to life effortlessly.', 'oceanwp' ); ?><br>
		<?php esc_html_e( 'All parts are customizable and adjustable for you to make them your very own.', 'oceanwp' ); ?><br>
	</p>

	<?php
}

function ocean_second_notice_content() {
	?>

	<span class="notice-subheading"><?php esc_html_e( 'Hi, there! &#x1F44B; We\'re here to help', 'oceanwp' ); ?></span>
	<h2><?php esc_html_e( 'Launch the Setup Wizard &#x1F9D9;', 'oceanwp' ); ?></h2>
	<p>
		<?php esc_html_e( 'The Setup Wizard is here to help you start a website in minutes.', 'oceanwp' ); ?><br>
		<?php esc_html_e( 'Check out our library of full site templates, and choose one to get started fast.', 'oceanwp' ); ?><br>
		<?php esc_html_e( 'Then simply adjust anything and everything, or start adding content.', 'oceanwp' ); ?><br>
	</p>

	<?php
}

function oceancp_output_ocean_extra_notice_panel_enqueue_scripts( $hook ) {
	if ( ! apply_filters(
		'oceanwp:admin:display-ocean-extra-plugin-notice',
		true
	) ) {
		return;
	}

	if ( ! current_user_can( 'activate_plugins' ) ) {
		return;
	}
	if ( get_option( 'dismissed-oceanwp_plugin_notice', false ) ) {
		return;
	}

	$onboaridng_completed = get_option('owp_onboarding_completed');
	$permanent_dismiss = get_option('oceanwp_plugin_notice_permanently_dismissed');

	if ( ! $onboaridng_completed && ! $permanent_dismiss ) {
		return;
	}

	$manager = new Oceanwp_Plugin_Manager();
	$status  = $manager->get_ocean_extra_status()['status'];

	if ( $status === 'active' ) {
		return;
	}

	wp_enqueue_script( 'ocean-extra-plugin-panel-notice-js', OCEANWP_INC_DIR_URI . 'activation-notice/assets/js/panel-notice.min.js', array( 'jquery' ), OCEANWP_THEME_VERSION, true );
	wp_localize_script(
		'ocean-extra-plugin-panel-notice-js',
		'owp_notification_i18n',
		array(
			'activating'            => __( 'Activating...', 'oceanwp' ),
			'installing_activating' => __( 'Installing & activating...', 'oceanwp' ),
		)
	);
	wp_register_style( 'ocean-extra-plugin-panel-notice-css', OCEANWP_INC_DIR_URI . 'activation-notice/assets/css/panel-notice.min.css', array(), OCEANWP_THEME_VERSION );
	wp_enqueue_style( 'ocean-extra-plugin-panel-notice-css' );
}
add_action( 'admin_enqueue_scripts', 'oceancp_output_ocean_extra_notice_panel_enqueue_scripts' );

add_action(
	'admin_notices',
	function () {
		oceancp_output_ocean_extra_panel_notice();
	}
);

function oceancp_output_ocean_extra_panel_notice() {
	if ( ! apply_filters(
		'oceanwp:admin:display-ocean-extra-plugin-notice',
		true
	) ) {
		return;
	}

	if ( ! current_user_can( 'activate_plugins' ) ) {
		return;
	}
	if ( get_option( 'dismissed-oceanwp_plugin_notice', false ) ) {
		return;
	}

	$onboaridng_completed = get_option('owp_onboarding_completed');
	$permanent_dismiss = get_option('oceanwp_plugin_notice_permanently_dismissed');

	if ( ! $onboaridng_completed && ! $permanent_dismiss ) {
		return;
	}

	$manager = new Oceanwp_Plugin_Manager();
	$status  = $manager->get_ocean_extra_status()['status'];

	if ( $status === 'active' ) {
		return;
	}

	echo '<div class="notice notice-ocean-extra-plugin oe-panel-notice">';
	echo '<div class="notice-ocean-extra-plugin-root">';

	?>

	<div class="owp-ocean-extra-plugin-inner">
		<button type="button" class="notice-dismiss">
			<span class="screen-reader-text">
				<?php _e( 'Dismiss this notice.', 'oceanwp' ); ?>
			</span>
		</button>

		<span class="owp-notification-icon">
			<img src="<?php echo esc_url( OCEANWP_INC_DIR_URI . '/activation-notice/assets/img/oceanwp-blue-icon.png' ); ?>" />
		</span>

		<div class="owp-notification-content">
			<h2><?php esc_html_e( 'Awesome Possum - You\'re Amazing!', 'oceanwp' ); ?></h2>
			<h3 class="notice-subheading"><?php esc_html_e( 'Thank you for installing the OceanWP theme.', 'oceanwp' ); ?></h3>
			<p>
				<?php esc_html_e( 'We highly recommend you to install and activate the', 'oceanwp' ); ?>
				<b><?php esc_html_e( 'Ocean Extra', 'oceanwp' ); ?></b> plugin.
				<br>
				<?php esc_html_e( 'This plugin will unlock new power tools to help you build an amazing website. Get access to:', 'oceanwp' ); ?></p>
				<ul>
					<li> <?php echo esc_html__( 'freemium website template demos,', 'oceanwp' ); ?> </li>
					<li> <?php echo esc_html__( 'WordPress widgets,', 'oceanwp' ); ?> </li>
					<li> <?php echo esc_html__( 'Metabox settings to control pages and posts individually,', 'oceanwp' ); ?> </li>
					<li> <?php echo esc_html__( 'ability to create and use custom templates,', 'oceanwp' ); ?> </li>
					<li> <?php echo esc_html__( 'and much, much more.', 'oceanwp' ); ?> </li>
				</ul>
			</p>
		</div>
	</div>
	<?php

	echo '</div>';
	echo '</div>';
}
© 2025 XylotrechusZ