first commit

This commit is contained in:
Robert Nasarek 2023-08-03 16:39:36 +02:00
commit d7ae7d3338
9 changed files with 470 additions and 0 deletions

View file

@ -0,0 +1,25 @@
<?php
namespace Drupal\wisski_cloud_account_manager\Controller;
use Drupal\Core\Controller\ControllerBase;
/**
* The Wisski Cloud account manager info controller.
*/
class WisskiCloudAccountManagerController extends ControllerBase {
/**
* Info page for terms and conditions.
*
* @return array
* The page build array.
*/
public function termsAndConditions(): array {
$build = [
'#markup' => $this->t('Hello World!'),
];
return $build;
}
}