get_component( 'Notificator' ); return $notificator->get_notifications_by_conditions(); } public function register_routes() { register_rest_route( self::ROUTE_NAMESPACE, '/whats-new', [ 'methods' => \WP_REST_Server::READABLE, 'callback' => [ $this, 'get_notifications' ], 'permission_callback' => [ $this, 'permission_callback' ], ] ); } }