From f47b2597c78e08464ea99e4c4362add867cd1b7b Mon Sep 17 00:00:00 2001 From: Igor Biki <ibiki@uwaterloo.ca> Date: Thu, 27 Aug 2020 11:44:09 -0400 Subject: [PATCH] ISTWCMS-4032: Adding one more function to interface, and adding more comments. --- src/Service/UWService.php | 5 +++-- src/Service/UWServiceInterface.php | 21 ++++++++++++++++++++- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/src/Service/UWService.php b/src/Service/UWService.php index 52a1e84b..821964d7 100644 --- a/src/Service/UWService.php +++ b/src/Service/UWService.php @@ -3,10 +3,11 @@ namespace Drupal\uw_cfg_common\Service; use Drupal\Core\Entity\EntityInterface; +use Drupal\node\Entity\Node; use Drupal\node\NodeInterface; /** - * Class UWService. + * Class UWService * * @package Drupal\uw_cfg_common\Service */ @@ -48,7 +49,7 @@ class UWService implements UWServiceInterface { * {@inheritDoc} */ public function getTeaserContent(NodeInterface $node, array $variables_to_get, string $teaser_type): array { - + $variables = []; // Step through each of the variables to get and set the variables for the // teaser content. foreach ($variables_to_get as $variable_to_get) { diff --git a/src/Service/UWServiceInterface.php b/src/Service/UWServiceInterface.php index c6797003..360bbf85 100644 --- a/src/Service/UWServiceInterface.php +++ b/src/Service/UWServiceInterface.php @@ -3,9 +3,14 @@ namespace Drupal\uw_cfg_common\Service; use Drupal\Core\Entity\EntityInterface; +use Drupal\node\NodeInterface; /** - * Interface for UW services. + * Interface UWServiceInterface + * + * Interface that is collection of common functions used throughout custom blocks. + * + * @package Drupal\uw_cfg_common\Service */ interface UWServiceInterface { @@ -22,4 +27,18 @@ interface UWServiceInterface { */ public function prepareResponsiveImage(EntityInterface $entity, string $image_style): array; + /** + * Prepares teaser. + * + * @param \Drupal\node\NodeInterface $node + * Node entity. + * @param array $variables_to_get + * List of variables to return. + * @param string $teaser_type + * Teaser type. + * + * @return array + * Array of variables and their values. + */ + public function getTeaserContent(NodeInterface $node, array $variables_to_get, string $teaser_type): array; } -- GitLab