2024-07-05 13:29:13 +02:00
< ? php
/**
* Class responsible for Event Plugin related admin notices .
*
* Notices for guiding to proper configuration of ActivityPub with event plugins .
*
2024-10-02 21:54:03 +02:00
* @ package ActivityPub_Event_Bridge
2024-07-05 13:29:13 +02:00
* @ since 1.0 . 0
2024-08-01 20:08:35 +02:00
* @ license AGPL - 3.0 - or - later
2024-07-05 13:29:13 +02:00
*/
2024-10-02 21:54:03 +02:00
namespace ActivityPub_Event_Bridge\Admin ;
2024-07-05 13:29:13 +02:00
2024-09-28 13:14:10 +02:00
// Exit if accessed directly.
defined ( 'ABSPATH' ) || exit ; // @codeCoverageIgnore
2024-10-02 21:54:03 +02:00
use ActivityPub_Event_Bridge\Plugins\Event_Plugin ;
2024-09-11 00:38:21 +02:00
2024-07-05 13:29:13 +02:00
/**
* Class responsible for Event Plugin related admin notices .
*
* Notices for guiding to proper configuration of ActivityPub with event plugins .
*
* @ since 1.0 . 0
*/
class Event_Plugin_Admin_Notices {
/**
* Information about the event plugin .
*
2024-09-11 00:38:21 +02:00
* @ var Event_Plugin
2024-07-05 13:29:13 +02:00
*/
protected $event_plugin ;
/**
* Adds admin notices to an active supported event plugin .
*
2024-09-11 00:38:21 +02:00
* @ param Event_Plugin $event_plugin Class that has implements functions to handle a certain supported activate event plugin .
2024-07-05 13:29:13 +02:00
*/
public function __construct ( $event_plugin ) {
$this -> event_plugin = $event_plugin ;
if ( $this -> event_post_type_is_not_activitypub_enabled () ) {
add_action ( 'admin_notices' , array ( $this , 'admin_notice_activitypub_not_enabled_for_post_type' ), 10 , 1 );
}
}
/**
* Check if ActivityPub is enabled for the custom post type of the event plugin .
*
* @ return bool
*/
2024-09-11 00:38:21 +02:00
private function event_post_type_is_not_activitypub_enabled () : bool {
return ! in_array ( $this -> event_plugin :: get_post_type (), get_option ( 'activitypub_support_post_types' , array () ), true );
2024-07-05 13:29:13 +02:00
}
/**
* Display the admin notices for the plugins .
2024-09-11 00:38:21 +02:00
*
* @ return void
2024-07-05 13:29:13 +02:00
*/
2024-09-11 00:38:21 +02:00
public function admin_notice_activitypub_not_enabled_for_post_type () : void {
if ( $this -> event_plugin :: is_plugin_page () ) {
$this -> do_admin_notice_post_type_not_activitypub_enabled ();
2024-07-05 13:29:13 +02:00
}
}
/**
* Print admin notice that the current post type is not enabled in the ActivityPub plugin .
*
2024-09-11 00:38:21 +02:00
* @ return void
2024-07-05 13:29:13 +02:00
*/
2024-09-11 00:38:21 +02:00
private function do_admin_notice_post_type_not_activitypub_enabled () : void {
$event_plugin_data = get_plugin_data ( WP_PLUGIN_DIR . '/' . $this -> event_plugin :: get_plugin_file () );
2024-07-05 13:29:13 +02:00
$activitypub_plugin_data = get_plugin_data ( ACTIVITYPUB_PLUGIN_FILE );
$notice = sprintf (
/* translators: 1: the name of the event plugin a admin notice is shown. 2: The name of the ActivityPub plugin. */
_x (
'You have installed the <i>%1$s</i> plugin, but the event post type of the plugin <i>%2$s</i> is <b>not enabled</b> in the <a href="%3$s">%1$s settings</a>.' ,
'admin notice' ,
2024-10-02 21:54:03 +02:00
'activitypub-event-bridge'
2024-07-05 13:29:13 +02:00
),
esc_html ( $activitypub_plugin_data [ 'Name' ] ),
esc_html ( $event_plugin_data [ 'Name' ] ),
admin_url ( 'options-general.php?page=activitypub&tab=settings' )
);
$allowed_html = array (
'a' => array (
'href' => true ,
'title' => true ,
),
'b' => array (),
'i' => array (),
);
echo '<div class="notice notice-warning is-dismissible"><p>' . \wp_kses ( $notice , $allowed_html ) . '</p></div>' ;
}
}