52 lines
856 B
PHP
52 lines
856 B
PHP
<?php
|
|
/**
|
|
* Handler class.
|
|
*
|
|
* @package Activitypub
|
|
*/
|
|
|
|
namespace Activitypub;
|
|
|
|
use Activitypub\Handler\Announce;
|
|
use Activitypub\Handler\Create;
|
|
use Activitypub\Handler\Delete;
|
|
use Activitypub\Handler\Follow;
|
|
use Activitypub\Handler\Like;
|
|
use Activitypub\Handler\Undo;
|
|
use Activitypub\Handler\Update;
|
|
|
|
/**
|
|
* Handler class.
|
|
*/
|
|
class Handler {
|
|
/**
|
|
* Initialize the class, registering WordPress hooks.
|
|
*/
|
|
public static function init() {
|
|
self::register_handlers();
|
|
}
|
|
|
|
/**
|
|
* Register handlers.
|
|
*/
|
|
public static function register_handlers() {
|
|
Announce::init();
|
|
Create::init();
|
|
Delete::init();
|
|
Follow::init();
|
|
Undo::init();
|
|
Update::init();
|
|
|
|
if ( ! ACTIVITYPUB_DISABLE_REACTIONS ) {
|
|
Like::init();
|
|
}
|
|
|
|
/**
|
|
* Register additional handlers.
|
|
*
|
|
* @since 1.3.0
|
|
*/
|
|
do_action( 'activitypub_register_handlers' );
|
|
}
|
|
}
|