You are here

ColorRGBA.php in Open Social 10.2.x

File

modules/social_features/social_branding/src/Plugin/GraphQL/DataProducer/ColorRGBA.php
View source
<?php

namespace Drupal\social_branding\Plugin\GraphQL\DataProducer;

use Drupal\social_branding\Wrappers\Color;
use Drupal\social_graphql\Plugin\GraphQL\DataProducer\Entity\EntityDataProducerPluginBase;

/**
 * The RGBA color.
 *
 * @DataProducer(
 *   id = "color_rgba",
 *   name = @Translation("Color"),
 *   description = @Translation("The color."),
 *   produces = @ContextDefinition("any",
 *     label = @Translation("Color")
 *   ),
 *   consumes = {
 *     "color" = @ContextDefinition("any",
 *       label = @Translation("Color"),
 *       required = TRUE
 *     )
 *   }
 * )
 */
class ColorRGBA extends EntityDataProducerPluginBase {

  /**
   * Returns the RGBA color.
   *
   * @param \Drupal\social_branding\Wrappers\Color $color
   *   The branding color.
   *
   * @return \Drupal\social_branding\Wrappers\Color
   *   The branding color.
   */
  public function resolve(Color $color) : Color {
    return $color;
  }

}

Classes

Namesort descending Description
ColorRGBA The RGBA color.