You are here

EntityQueueFormWidgetController.php in Entityqueue Form Widget 8

Same filename and directory in other branches
  1. 2.0.x src/Controller/EntityQueueFormWidgetController.php

File

src/Controller/EntityQueueFormWidgetController.php
View source
<?php

namespace Drupal\entityqueue_form_widget\Controller;

use Drupal\Core\Controller\ControllerBase;

/**
 * Module controller.
 */
class EntityQueueFormWidgetController extends ControllerBase {

  /**
   * Show module home page content.
   */
  public function content() {
    return [
      '#type' => 'markup',
      '#markup' => $this
        ->t('Entity Queue Form Widget Custom Page'),
    ];
  }

}

Classes

Namesort descending Description
EntityQueueFormWidgetController Module controller.