TableDragExampleController.php

Same filename in other branches
  1. 3.x modules/tabledrag_example/src/Controller/TableDragExampleController.php
  2. 4.0.x modules/tabledrag_example/src/Controller/TableDragExampleController.php

Namespace

Drupal\tabledrag_example\Controller

File

tabledrag_example/src/Controller/TableDragExampleController.php

View source
<?php

namespace Drupal\tabledrag_example\Controller;

use Drupal\Core\Controller\ControllerBase;
use Drupal\examples\Utility\DescriptionTemplateTrait;

/**
 * Controller for the tabledrag example.
 *
 * This controller only deals with the description path.
 */
class TableDragExampleController extends ControllerBase {
    use DescriptionTemplateTrait;
    
    /**
     * {@inheritdoc}
     */
    protected function getModuleName() {
        return 'tabledrag_example';
    }

}

Classes

Title Deprecated Summary
TableDragExampleController Controller for the tabledrag example.