From 6e78c3a46b17362aa42e00a2ac4bcadd9a64b1bd Mon Sep 17 00:00:00 2001
From: owenbush <ojb@ukhhf.co.uk>
Date: Mon, 3 Aug 2020 15:29:40 -0600
Subject: [PATCH] Resolve minor coding standards issues with
 RecurringEventsFullCalendarProcessor

---
 .../RecurringEventsFullCalendarProcessor.php                | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/Plugin/FullcalendarViewProcessor/RecurringEventsFullCalendarProcessor.php b/src/Plugin/FullcalendarViewProcessor/RecurringEventsFullCalendarProcessor.php
index 39cb01e5..0dc4bc39 100644
--- a/src/Plugin/FullcalendarViewProcessor/RecurringEventsFullCalendarProcessor.php
+++ b/src/Plugin/FullcalendarViewProcessor/RecurringEventsFullCalendarProcessor.php
@@ -4,7 +4,7 @@ namespace Drupal\recurring_events\Plugin\FullcalendarViewProcessor;
 
 use Drupal\fullcalendar_view\Plugin\FullcalendarViewProcessorBase;
 use Drupal\recurring_events\Entity\EventInstance;
-use Drupal\Component\Utility\Xss;
+use Drupal\Core\StringTranslation\StringTranslationTrait;
 
 /**
  * Recurring Events Full Calendar View Processor plugin.
@@ -19,6 +19,8 @@ use Drupal\Component\Utility\Xss;
  */
 class RecurringEventsFullCalendarProcessor extends FullcalendarViewProcessorBase {
 
+  use StringTranslationTrait;
+
   /**
    * {@inheritdoc}
    */
@@ -55,7 +57,7 @@ class RecurringEventsFullCalendarProcessor extends FullcalendarViewProcessorBase
         $title = $fields[$options['title']]->advancedRender($row);
       }
       else {
-        $title = t('Invalid event title');
+        $title = $this->t('Invalid event title');
       }
 
       $entries[$key]['title'] = $title;
-- 
GitLab