Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
novicell/dds_better_backend / src / Controller / TitleController.php
Size: Mime:
<?php


namespace Drupal\dds_better_backend\Controller;


use Drupal\Core\Controller\ControllerBase;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Routing\RouteMatchInterface;

class TitleController extends ControllerBase {

  public function settingsTitle(RouteMatchInterface $route_match, EntityInterface $_entity = NULL) {
    return $this->t('Better Backend settings');
  }
}