class JobItemLegend

Views area job item legend handler.

Plugin annotation

@ViewsArea("tmgmt_job_item_legend");

Hierarchy

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

Expanded class hierarchy of JobItemLegend

File

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

Namespace

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

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

}

Members