class JobLegend

Views area job legend handler.

Plugin annotation

@ViewsArea("tmgmt_job_legend");

Hierarchy

  • class \Drupal\tmgmt\Plugin\views\area\JobLegend extends \Drupal\views\Plugin\views\area\AreaPluginBase

Expanded class hierarchy of JobLegend

File

src/Plugin/views/area/JobLegend.php, line 14

Namespace

Drupal\tmgmt\Plugin\views\area
View source
class JobLegend extends AreaPluginBase {

  /**
   * {@inheritdoc}
   */
  public function render($empty = FALSE) {
    $form['footer'] = tmgmt_color_job_legend();
    $form['footer']['#weight'] = 100;
    return $form;
  }

}

Members