first commit
This commit is contained in:
commit
d7ae7d3338
9 changed files with 470 additions and 0 deletions
25
src/Controller/WisskiCloudAccountManagerController.php
Normal file
25
src/Controller/WisskiCloudAccountManagerController.php
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue