43 lines
1.2 KiB
PHP
43 lines
1.2 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Interface for defining supported Event Plugins.
|
||
|
*
|
||
|
* Basic information that each supported event needs for this plugin to work.
|
||
|
*
|
||
|
* @package Event_Bridge_For_ActivityPub
|
||
|
* @since 1.0.0
|
||
|
* @license AGPL-3.0-or-later
|
||
|
*/
|
||
|
|
||
|
namespace Event_Bridge_For_ActivityPub\Integrations;
|
||
|
|
||
|
use Event_Bridge_For_ActivityPub\ActivityPub\Transmogrifier\Base as Transmogrifier;
|
||
|
|
||
|
// Exit if accessed directly.
|
||
|
defined( 'ABSPATH' ) || exit; // @codeCoverageIgnore
|
||
|
|
||
|
/**
|
||
|
* Interface for an event plugin integration that supports the Event Sources feature.
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
interface Feature_Event_Sources {
|
||
|
/**
|
||
|
* Returns the plugin file relative to the plugins dir.
|
||
|
*
|
||
|
* @return Transmogrifier
|
||
|
*/
|
||
|
public static function get_transmogrifier(): Transmogrifier;
|
||
|
|
||
|
/**
|
||
|
* Retrieves a list of post IDs for cached remote events that have ended.
|
||
|
*
|
||
|
* Filters the events to include only those that ended before the specified timestamp.
|
||
|
*
|
||
|
* @param int $ended_before_time Unix timestamp. Only events ending before this time will be included.
|
||
|
*
|
||
|
* @return int[] List of post IDs for events that match the criteria.
|
||
|
*/
|
||
|
public static function get_cached_remote_events( $ended_before_time ): array;
|
||
|
}
|