André Menrath
2194f898fd
Some checks failed
PHP Code Checker / PHP Code Checker (pull_request) Failing after 48s
PHPUnit / PHPUnit – PHP 7.4 (pull_request) Successful in 1m1s
PHPUnit / PHPUnit – PHP 8.0 (pull_request) Successful in 1m1s
PHPUnit / PHPUnit – PHP 8.1 (pull_request) Successful in 1m4s
PHPUnit / PHPUnit – PHP 8.2 (pull_request) Successful in 1m1s
PHPUnit / PHPUnit – PHP 8.3 (pull_request) Successful in 1m0s
Based on evaluation results.
110 lines
4.6 KiB
PHP
110 lines
4.6 KiB
PHP
<?php
|
|
/**
|
|
* Template for ActivityPub Event Bridge settings page.
|
|
*
|
|
* This template is used to display and manage settings for the ActivityPub Event Bridge plugin.
|
|
*
|
|
* @package ActivityPub_Event_Bridge
|
|
* @since 1.0.0
|
|
*
|
|
* @param array $args An array of arguments for the settings page.
|
|
*/
|
|
|
|
// Exit if accessed directly.
|
|
defined( 'ABSPATH' ) || exit; // @codeCoverageIgnore
|
|
|
|
\load_template(
|
|
__DIR__ . '/admin-header.php',
|
|
true,
|
|
array(
|
|
'settings' => 'active',
|
|
)
|
|
);
|
|
|
|
use Activitypub\Activity\Extended_Object\Event;
|
|
|
|
if ( ! isset( $args ) || ! array_key_exists( 'event_terms', $args ) ) {
|
|
return;
|
|
}
|
|
|
|
if ( ! current_user_can( 'manage_options' ) ) {
|
|
return;
|
|
}
|
|
|
|
$event_terms = $args['event_terms'];
|
|
|
|
require_once ACTIVITYPUB_EVENT_BRIDGE_PLUGIN_DIR . '/includes/event-categories.php';
|
|
|
|
$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() );
|
|
?>
|
|
|
|
<div class="activitypub-event-bridge-settings activitypub-event-bridge-settings-page hide-if-no-js">
|
|
<form method="post" action="options.php">
|
|
<?php \settings_fields( 'activitypub-event-bridge' ); ?>
|
|
|
|
<div class="box">
|
|
<h2> <?php esc_html_e( 'ActivityPub Event Category', 'activitypub-event-bridge' ); ?> </h2>
|
|
<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>
|
|
<table class="form-table">
|
|
<tr>
|
|
<th scope="row"> <?php esc_html_e( 'Default Category', 'activitypub-event-bridge' ); ?> </th>
|
|
<td>
|
|
<select id="activitypub_event_bridge_default_event_category" name="activitypub_event_bridge_default_event_category">';
|
|
<?php
|
|
foreach ( ACTIVITYPUB_EVENT_BRIDGE_EVENT_CATEGORIES as $value => $label ) {
|
|
echo '<option value="' . esc_attr( $value ) . '" ' . selected( $selected_default_event_category, $value, false ) . '>' . esc_html( $label ) . '</option>';
|
|
}
|
|
?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<?php if ( ! empty( $event_terms ) ) : ?>
|
|
<h3> <?php esc_html_e( 'Fine-grained Event Category Settings', 'activitypub-event-bridge' ); ?> </h3>
|
|
<p> <?php esc_html_e( 'For any event category you have created on your WordPress site you can choose an event category which will be used in federation. This option lets you override the default selection above. ', 'activitypub-event-bridge' ); ?> </p>
|
|
<table class="form-table">
|
|
<tr>
|
|
<th> <?php esc_html_e( 'Event category on your site', 'activitypub-event-bridge' ); ?> </th>
|
|
<th> <?php esc_html_e( 'Fediverse event category', 'activitypub-event-bridge' ); ?> </th>
|
|
</tr>
|
|
<?php foreach ( $event_terms as $event_term ) { ?>
|
|
<tr>
|
|
<td scope="row"> <?php echo esc_html( $event_term->name ); ?> </td>
|
|
<td class="select-cell">
|
|
<select name="activitypub_event_bridge_event_category_mappings[<?php echo esc_attr( $event_term->slug ); ?>]">
|
|
<?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 ) {
|
|
echo '<option value="' . esc_attr( $mapping ) . '"> -- ' . esc_html( ACTIVITYPUB_EVENT_BRIDGE_EVENT_CATEGORIES[ $mapping ] ) . ' -- </option>';
|
|
} else {
|
|
echo '<option value="' . esc_attr( $mapping ) . '">' . esc_html( ACTIVITYPUB_EVENT_BRIDGE_EVENT_CATEGORIES[ $mapping ] ) . '</option>';
|
|
}
|
|
echo '<option value="DEFAULT" ' . selected( $selected_default_event_category, 'DEFAULT', false ) . '> -- ' . esc_html__( 'Default', 'activitypub-event-bridge' ) . ' -- </option>';
|
|
foreach ( Event::DEFAULT_EVENT_CATEGORIES as $event_category ) {
|
|
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>';
|
|
}
|
|
?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
</table>
|
|
<?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"/>
|
|
</div>
|
|
<?php \submit_button(); ?>
|
|
</form>
|
|
</div>
|