. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 54.36.91.62 / Your IP :
216.73.216.178 [
Web Server : Apache System : Linux webm002.cluster127.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : eticmes ( 123698) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/eticmes/www/wp-content/themes/oceanwp/inc/activation-notice/ |
Upload File : |
<?php
add_action(
'wp_ajax_oceanwp_dismissed_notice',
function () {
update_option( 'dismissed-oceanwp_plugin_notice', true );
wp_die();
}
);
add_action(
'wp_ajax_oceanwp_check_notice_actions',
function () {
$manager = new Oceanwp_Plugin_Manager();
$status = $manager->get_ocean_extra_status();
$actions_html = '';
if ( $status['status'] == 'installed' ) {
$actions_html = '<div class="notice-actions">
<button type="button" class="button button-primary" data-action="activate">' . __( 'Activate Ocean Extra', 'oceanwp' ) . '</button>
</div>';
} elseif ( $status['status'] == 'uninstalled' ) {
$actions_html = '<div class="notice-actions">
<button type="button" class="button button-primary" data-action="install_activate">' . __( 'Install & Activate Ocean Extra', 'oceanwp' ) . '</button>
</div>';
}
wp_send_json_success(
$actions_html
);
}
);
add_action(
'wp_ajax_oceanwp_notice_button_click',
function () {
if ( ! current_user_can( 'activate_plugins' ) ) {
return;
}
$manager = new Oceanwp_Plugin_Manager();
$status = $manager->get_ocean_extra_status();
if ( $status['status'] === 'active' ) {
wp_send_json_success(
array(
'status' => 'active',
'pluginUrl' => admin_url( 'admin.php?page=oceanwp' ),
)
);
}
if ( $status['status'] === 'uninstalled' ) {
$manager->download_and_install( $status['slug'] );
$manager->plugin_activation( $status['slug'] );
wp_send_json_success(
array(
'status' => 'active',
'pluginUrl' => admin_url( 'admin.php?page=oceanwp' ),
)
);
}
if ( $status['status'] === 'installed' ) {
$manager->plugin_activation( $status['slug'] );
wp_send_json_success(
array(
'status' => 'active',
'pluginUrl' => admin_url( 'admin.php?page=oceanwp' ),
)
);
}
wp_die();
}
);