2024-08-27 21:23:33 +02:00
< ? php
/**
2024-10-02 21:54:03 +02:00
* Template for ActivityPub Event Bridge settings page .
2024-08-27 21:23:33 +02:00
*
2024-10-02 21:54:03 +02:00
* This template is used to display and manage settings for the ActivityPub Event Bridge plugin .
2024-08-27 21:23:33 +02:00
*
2024-10-02 21:54:03 +02:00
* @ package ActivityPub_Event_Bridge
2024-08-27 21:23:33 +02:00
* @ since 1.0 . 0
*
* @ param array $args An array of arguments for the settings page .
*/
// Exit if accessed directly.
defined ( 'ABSPATH' ) || exit ; // @codeCoverageIgnore
2024-10-19 16:46:50 +02:00
\load_template (
__DIR__ . '/admin-header.php' ,
true ,
array (
'settings' => 'active' ,
)
);
2024-08-27 21:23:33 +02:00
use Activitypub\Activity\Extended_Object\Event ;
2024-08-28 17:48:15 +02:00
if ( ! isset ( $args ) || ! array_key_exists ( 'event_terms' , $args ) ) {
2024-08-27 21:23:33 +02:00
return ;
}
if ( ! current_user_can ( 'manage_options' ) ) {
return ;
}
2024-08-27 21:42:17 +02:00
$event_terms = $args [ 'event_terms' ];
2024-08-27 21:23:33 +02:00
2024-10-03 19:59:31 +02:00
require_once ACTIVITYPUB_EVENT_BRIDGE_PLUGIN_DIR . '/includes/event-categories.php' ;
2024-08-27 21:23:33 +02:00
2024-10-02 21:54:03 +02:00
$selected_default_event_category = \get_option ( 'activitypub_event_bridge_default_event_category' , 'MEETING' );
$current_category_mapping = \get_option ( 'activitypub_event_bridge_event_category_mappings' , array () );
2024-08-27 21:23:33 +02:00
?>
2024-10-19 16:46:50 +02:00
< div class = " activitypub-event-bridge-settings activitypub-event-bridge-settings-page hide-if-no-js " >
2024-08-27 21:23:33 +02:00
< form method = " post " action = " options.php " >
2024-10-02 21:54:03 +02:00
< ? php \settings_fields ( 'activitypub-event-bridge' ); ?>
2024-08-27 21:23:33 +02:00
< div class = " box " >
2024-10-19 16:46:50 +02:00
< h2 > < ? php esc_html_e ( 'ActivityPub Event Category' , 'activitypub-event-bridge' ); ?> </h2>
2024-10-02 21:54:03 +02:00
< p > < ? php esc_html_e ( 'To help visitors find events more easily, the community created a set of basic event categories. Please select the category that best matches the majority of the events you organize.' , 'activitypub-event-bridge' ); ?> </p>
2024-08-27 21:23:33 +02:00
< table class = " form-table " >
< tr >
2024-10-02 21:54:03 +02:00
< th scope = " row " > < ? php esc_html_e ( 'Default Category' , 'activitypub-event-bridge' ); ?> </th>
2024-08-27 21:23:33 +02:00
< td >
2024-10-02 21:54:03 +02:00
< select id = " activitypub_event_bridge_default_event_category " name = " activitypub_event_bridge_default_event_category " > ' ;
2024-08-27 21:23:33 +02:00
< ? php
2024-10-03 19:59:31 +02:00
foreach ( ACTIVITYPUB_EVENT_BRIDGE_EVENT_CATEGORIES as $value => $label ) {
2024-08-27 21:23:33 +02:00
echo '<option value="' . esc_attr ( $value ) . '" ' . selected ( $selected_default_event_category , $value , false ) . '>' . esc_html ( $label ) . '</option>' ;
}
?>
</ select >
</ td >
</ tr >
</ table >
2024-10-19 16:46:50 +02:00
< ? php if ( ! empty ( $event_terms ) ) : ?>
< h3 > < ? php esc_html_e ( 'Advanced Event Category Settings' , 'activitypub-event-bridge' ); ?> </h3>
2024-10-02 21:54:03 +02:00
< p > < ? php esc_html_e ( 'Take more control by adjusting how your event categories are mapped to the basic category set used in ActivityPub. This option lets you override the default selection above, ensuring more accurate categorization and better visibility for your events.' , 'activitypub-event-bridge' ); ?> </p>
2024-08-27 21:23:33 +02:00
< table class = " form-table " >
< ? php foreach ( $event_terms as $event_term ) { ?>
< tr >
< th scope = " row " > < ? php echo esc_html ( $event_term -> name ); ?> </th>
< td >
2024-10-02 21:54:03 +02:00
< select name = " activitypub_event_bridge_event_category_mappings[<?php echo esc_attr( $event_term->slug ); ?>] " >
2024-08-27 21:23:33 +02:00
< ? php
$current_mapping_is_set = false ;
if ( ! empty ( $current_category_mapping ) ) {
$current_mapping_is_set = array_key_exists ( $event_term -> slug , $current_category_mapping );
}
if ( $current_mapping_is_set ) {
$mapping = $current_category_mapping [ $event_term -> slug ];
} else {
$mapping = 'DEFAULT' ;
}
if ( 'DEFAULT' === $mapping ) {
2024-10-03 19:59:31 +02:00
echo '<option value="' . esc_attr ( $mapping ) . '"> -- ' . esc_html ( ACTIVITYPUB_EVENT_BRIDGE_EVENT_CATEGORIES [ $mapping ] ) . ' -- </option>' ;
2024-08-27 21:23:33 +02:00
} else {
2024-10-03 19:59:31 +02:00
echo '<option value="' . esc_attr ( $mapping ) . '">' . esc_html ( ACTIVITYPUB_EVENT_BRIDGE_EVENT_CATEGORIES [ $mapping ] ) . '</option>' ;
2024-08-27 21:23:33 +02:00
}
2024-10-02 21:54:03 +02:00
echo '<option value="DEFAULT" ' . selected ( $selected_default_event_category , 'DEFAULT' , false ) . '> -- ' . esc_html__ ( 'Default' , 'activitypub-event-bridge' ) . ' -- </option>' ;
2024-08-27 21:23:33 +02:00
foreach ( Event :: DEFAULT_EVENT_CATEGORIES as $event_category ) {
2024-10-03 19:59:31 +02:00
echo '<option value="' . esc_attr ( $event_category ) . '" ' . selected ( $mappings [ $event_term -> slug ] ? ? '' , $event_category , false ) . '>' . esc_html ( ACTIVITYPUB_EVENT_BRIDGE_EVENT_CATEGORIES [ $event_category ] ) . '</option>' ;
2024-08-27 21:23:33 +02:00
}
?>
</ select >
</ td >
</ tr >
< ? php } ?>
</ table >
2024-10-19 16:46:50 +02:00
< ? php endif ; ?>
</ div >
<!-- This disables the setup wizard . -->
< div class = " hidden " >
< input type = " checkbox " id = " activitypub_event_bridge_initially_activated " name = " activitypub_event_bridge_initially_activated " />
2024-08-27 21:23:33 +02:00
</ div >
< ? php \submit_button (); ?>
</ form >
</ div >