wordpress-event-bridge-for-.../includes/integrations/class-events-manager.php

75 lines
1.9 KiB
PHP
Raw Normal View History

2024-09-06 14:58:21 +02:00
<?php
/**
* Events Manager.
*
* Defines all the necessary meta information and methods for the integration of the
* WordPress plugin "Events Manager".
2024-09-06 14:58:21 +02:00
*
* @link https://wordpress.org/plugins/events-manager/
* @package Event_Bridge_For_ActivityPub
2024-09-06 14:58:21 +02:00
* @since 1.0.0
*/
namespace Event_Bridge_For_ActivityPub\Integrations;
2024-09-06 14:58:21 +02:00
2024-12-15 22:25:28 +01:00
use Event_Bridge_For_ActivityPub\ActivityPub\Transformer\Events_Manager as Events_Manager_Transformer;
2024-09-06 14:58:21 +02:00
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit; // @codeCoverageIgnore
/**
* Events Manager.
2024-09-06 14:58:21 +02:00
*
* Defines all the necessary meta information and methods for the integration of the
* WordPress plugin "Events Manager".
2024-09-06 14:58:21 +02:00
*
* @since 1.0.0
*/
2024-12-15 22:25:28 +01:00
final class Events_Manager extends Event_Plugin_Integration {
2024-09-06 14:58:21 +02:00
/**
* Returns the full plugin file.
*
* @return string
*/
public static function get_relative_plugin_file(): string {
return 'events-manager/events-manager.php';
2024-09-06 14:58:21 +02:00
}
/**
* Returns the event post type of the plugin.
*
* @return string
*/
public static function get_post_type(): string {
return defined( 'EM_POST_TYPE_EVENT' ) ? constant( 'EM_POST_TYPE_EVENT' ) : 'event';
}
/**
* Returns the IDs of the admin pages of the plugin.
2024-09-06 14:58:21 +02:00
*
* @return array The settings page urls.
2024-09-06 14:58:21 +02:00
*/
public static function get_settings_page(): array {
return array();
2024-09-06 14:58:21 +02:00
}
/**
* Returns the taxonomy used for the plugin's event categories.
*
* @return string
*/
2024-09-18 21:26:53 +02:00
public static function get_event_category_taxonomy(): string {
2024-09-06 14:58:21 +02:00
return defined( 'EM_TAXONOMY_CATEGORY' ) ? constant( 'EM_TAXONOMY_CATEGORY' ) : 'event-categories';
}
2024-12-15 22:25:28 +01:00
/**
* Returns the ActivityPub transformer for a Events_Manager event post.
*
* @param WP_Post $post The WordPress post object of the Event.
* @return Events_Manager_Transformer
*/
public static function get_activitypub_event_transformer( $post ): Events_Manager_Transformer {
return new Events_Manager_Transformer( $post, self::get_event_category_taxonomy() );
}
2024-09-06 14:58:21 +02:00
}