André Menrath
5712706457
All checks were successful
PHP Code Checker / PHP Code Checker (pull_request) Successful in 50s
PHPUnit / PHPUnit – PHP 7.4 (pull_request) Successful in 1m4s
PHPUnit / PHPUnit – PHP 8.0 (pull_request) Successful in 1m2s
PHPUnit / PHPUnit – PHP 8.1 (pull_request) Successful in 1m2s
PHPUnit / PHPUnit – PHP 8.2 (pull_request) Successful in 1m7s
PHPUnit / PHPUnit – PHP 8.3 (pull_request) Successful in 1m6s
PHPUnit / PHPUnit – PHP 8.4 (pull_request) Successful in 1m5s
42 lines
1.2 KiB
PHP
42 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;
|
|
}
|