Repository URL to install this package:
|
Version:
1.0.3 ▾
|
<?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');
}
}