AddonAvailable.php
2.15 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
namespace AC\Check;
use AC\Ajax;
use AC\Capabilities;
use AC\Integration;
use AC\Message\Notice\Dismissible;
use AC\PluginInformation;
use AC\Preferences;
use AC\Registrable;
use AC\Screen;
use Exception;
final class AddonAvailable
implements Registrable {
/** @var Integration */
private $integration;
/**
* @param Integration $integration
*/
public function __construct( Integration $integration ) {
$this->integration = $integration;
}
/**
* @throws Exception
*/
public function register() {
add_action( 'ac/screen', [ $this, 'display' ] );
$this->get_ajax_handler()->register();
}
/**
* @return Ajax\Handler
*/
private function get_ajax_handler() {
$handler = new Ajax\Handler();
$handler
->set_action( 'ac_dismiss_notice_addon_' . $this->integration->get_slug() )
->set_callback( [ $this, 'ajax_dismiss_notice' ] );
return $handler;
}
/**
* @return Preferences\User
*/
private function get_preferences() {
return new Preferences\User( 'check-addon-available-' . $this->integration->get_slug() );
}
/**
* Dismiss notice
*/
public function ajax_dismiss_notice() {
$this->get_ajax_handler()->verify_request();
$this->get_preferences()->set( 'dismiss-notice', true );
}
/**
* @param Screen $screen
*/
public function display( Screen $screen ) {
if ( ! current_user_can( Capabilities::MANAGE )
|| ! $this->integration->show_notice( $screen )
|| ! $this->integration->is_plugin_active()
|| $this->get_preferences()->get( 'dismiss-notice' )
) {
return;
}
$integration_info = new PluginInformation( $this->integration->get_basename() );
if ( $integration_info->is_active() ) {
return;
}
$message = sprintf(
__( 'Did you know Admin Columns Pro has an integration addon for %s? With the proper Admin Columns Pro license, you can download them from %s!', 'codepress-admin-columns' ),
sprintf( '<strong>%s</strong>', $this->integration->get_title() ),
ac_helper()->html->link(
ac_get_admin_url( 'addons' ),
__( 'the addons page', 'codepress-admin-columns' )
)
);
$notice = new Dismissible( $message, $this->get_ajax_handler() );
$notice->register();
}
}