Page.php

Same filename and directory in other branches
  1. 4.0.x modules/form_api_example/src/Controller/Page.php

Namespace

Drupal\form_api_example\Controller

File

modules/form_api_example/src/Controller/Page.php

View source
<?php

namespace Drupal\form_api_example\Controller;

use Drupal\examples\Utility\DescriptionTemplateTrait;

/**
 * Simple page controller for drupal.
 */
class Page {
  use DescriptionTemplateTrait;
  
  /**
   * {@inheritdoc}
   */
  public function getModuleName() {
    return 'form_api_example';
  }

}

Classes

Title Deprecated Summary
Page Simple page controller for drupal.