TestController.php in Acquia Lift Connector 8
Namespace
Drupal\acquia_lift\ControllerFile
src/Controller/TestController.phpView source
<?php
/**
* @file
* Contains \Drupal\acquia_lift\Controller\TestController.
*/
namespace Drupal\acquia_lift\Controller;
use Drupal\Core\Controller\ControllerBase;
class TestController extends ControllerBase {
/**
* Test connection controller.
*
* @return array
* List of available segments.
*
* @deprecated This controller is to be removed as soon as we build an automatic connection checker in the admin settings form.
*/
public function test() {
$data_api = \Drupal::service('acquia_lift.service.api.data_api');
$segments = $data_api
->getSegments();
$build['segments'] = [
'#markup' => print_r($segments, TRUE),
];
return $build;
}
}
Classes
Name | Description |
---|---|
TestController |