Fix and improve docs for event manager transformer
Some checks are pending
Deploy to https://wordpress-test.event-federation.eu/ / deploy (push) Waiting to run

This commit is contained in:
André Menrath 2024-01-05 12:49:46 +01:00
parent 1666fba8b9
commit 4adb4a563b

View file

@ -18,11 +18,13 @@ if ( ! defined( 'ABSPATH' ) ) {
}
/**
* ActivityPub Transformer for VS Event
* ActivityPub Transformer for events from the WordPress plugin 'Events Manager'
*
* @see https://wordpress.org/plugins/events-manager/
*
* @since 1.0.0
*/
class VS_Event extends Post {
class Events_Manager extends Post {
/**
* Get transformer name.
*
@ -122,5 +124,4 @@ class VS_Event extends Post {
$activtiypub_object = new Event();
return $activtiypub_object;
}
}