class-import-aioseo-hooks.php
1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
* @package WPSEO\Admin\Import
*/
/**
* Setting the hooks for importing the data the All-In-One-SEO plugin
*/
class WPSEO_Import_AIOSEO_Hooks extends WPSEO_Import_Hooks {
/**
* @var string The main plugin file.
*/
protected $plugin_file = 'all-in-one-seo-pack/all_in_one_seo_pack.php';
/**
* @var string The GET parameter for deactivating the plugin.
*/
protected $deactivation_listener = 'deactivate_aioseo';
/**
* Throw a notice to import settings.
*
* @since 3.0
*/
public function show_import_settings_notice() {
$url = add_query_arg( array( '_wpnonce' => wp_create_nonce( 'wpseo-import' ) ), admin_url( 'admin.php?page=wpseo_tools&tool=import-export&import=1&importaioseo=1#top#import-seo' ) );
echo '<div class="error"><p>', sprintf( esc_html__( 'The plugin All-In-One-SEO has been detected. Do you want to %simport its settings%s?', 'wordpress-seo' ), sprintf( '<a href="%s">', esc_url( $url ) ), '</a>' ), '</p></div>';
}
/**
* Throw a notice to inform the user that the plugin has been deactivated
*
* @since 3.0
*/
public function show_deactivate_notice() {
echo '<div class="updated"><p>', esc_html__( 'All-In-One-SEO has been deactivated', 'wordpress-seo' ), '</p></div>';
}
}