YoastSeo.php
970 Bytes
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
<?php
namespace AC\Integration;
use AC\Integration;
use AC\Screen;
use AC\Type\Url\Site;
final class YoastSeo extends Integration {
public function __construct() {
parent::__construct(
'ac-addon-yoast-seo/ac-addon-yoast-seo.php',
'Yoast SEO',
'assets/images/addons/yoast-seo.png',
sprintf(
'%s %s',
sprintf( __( 'Integrates %s with Admin Columns.', 'codepress-admin-columns' ), __( 'Yoast SEO', 'codepress-admin-columns' ) ),
sprintf( __( 'Display, inline- and bulk-edit, export, smart filter and sort your Yoast SEO contents on any admin list table.', 'codepress-admin-columns' ), __( 'Yoast SEO', 'codepress-admin-columns' ) )
),
null,
new Site( Site::PAGE_ADDON_YOAST_SEO )
);
}
public function is_plugin_active() {
return defined( 'WPSEO_VERSION' );
}
public function show_notice( Screen $screen ) {
return in_array( $screen->get_id(), [
'toplevel_page_wpseo_dashboard',
'seo_page_wpseo_titles',
] );
}
}