You are here

CalendarLegend.php in Content Planner 8

File

modules/content_calendar/src/Component/CalendarLegend.php
View source
<?php

namespace Drupal\content_calendar\Component;


/**
 *
 */
abstract class CalendarLegend {

  /**
   * @param \Drupal\content_calendar\Entity\ContentTypeConfig[] $content_config_entities
   *
   * @return array
   */
  public static function build(array $content_config_entities) {
    $build = [
      '#theme' => 'content_calendar_legend',
      '#content_type_configs' => $content_config_entities,
    ];
    return $build;
  }

}

Classes

Namesort descending Description
CalendarLegend