fixed naming

This commit is contained in:
ruru4143 2024-10-10 14:41:22 +02:00
parent 82dca423e1
commit 113d9cadfb
3 changed files with 8 additions and 8 deletions

View file

@ -6,14 +6,14 @@
* @license AGPL-3.0-or-later * @license AGPL-3.0-or-later
*/ */
namespace Activitypub_Event_Extensions\Activitypub\Transformer; namespace ActivityPub_Event_Bridge\Activitypub\Transformer;
// Exit if accessed directly. // Exit if accessed directly.
defined( 'ABSPATH' ) || exit; // @codeCoverageIgnore defined( 'ABSPATH' ) || exit; // @codeCoverageIgnore
use Activitypub\Activity\Extended_Object\Event; use Activitypub\Activity\Extended_Object\Event;
use Activitypub\Activity\Extended_Object\Place; use Activitypub\Activity\Extended_Object\Place;
use Activitypub_Event_Extensions\Activitypub\Transformer\Event as Event_Transformer; use ActivityPub_Event_Bridge\Activitypub\Transformer\Event as Event_Transformer;
use DateTime; use DateTime;
use DateTimeZone; use DateTimeZone;
use EM_Event; use EM_Event;

View file

@ -124,11 +124,11 @@ class Setup {
* @var array * @var array
*/ */
private const EVENT_PLUGIN_CLASSES = array( private const EVENT_PLUGIN_CLASSES = array(
'\Activitypub_Event_Extensions\Plugins\Events_Manager', '\ActivityPub_Event_Bridge\Plugins\Events_Manager',
'\Activitypub_Event_Extensions\Plugins\GatherPress', '\ActivityPub_Event_Bridge\Plugins\GatherPress',
'\Activitypub_Event_Extensions\Plugins\The_Events_Calendar', '\ActivityPub_Event_Bridge\Plugins\The_Events_Calendar',
'\Activitypub_Event_Extensions\Plugins\VS_Event_List', '\ActivityPub_Event_Bridge\Plugins\VS_Event_List',
'\Activitypub_Event_Extensions\Plugins\My_Calendar', '\ActivityPub_Event_Bridge\Plugins\My_Calendar',
); );
/** /**

View file

@ -10,7 +10,7 @@
* @since 1.0.0 * @since 1.0.0
*/ */
namespace Activitypub_Event_Extensions\Plugins; namespace ActivityPub_Event_Bridge\Plugins;
use Activitypub_Event_Extensions\Event_Plugins; use Activitypub_Event_Extensions\Event_Plugins;