class TaskLegend

Views area task legend handler.

Plugin annotation

@ViewsArea("tmgmt_local_task_legend");

Hierarchy

  • class \Drupal\tmgmt_local\Plugin\views\area\TaskLegend extends \Drupal\views\Plugin\views\area\AreaPluginBase

Expanded class hierarchy of TaskLegend

File

translators/tmgmt_local/src/Plugin/views/area/TaskLegend.php, line 14

Namespace

Drupal\tmgmt_local\Plugin\views\area
View source
class TaskLegend extends AreaPluginBase {

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

}

Members