Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions aluminum.info.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Aluminum Core
type: module
description: "Provides a pluggable set of building blocks for composing a website."
version: 8.x-1.0-alpha1
core: 8.x
version: 8.x-2.0-alpha1
core_version_requirement: ^9 || ^10
package: Aluminum
12 changes: 4 additions & 8 deletions src/Controller/AluminumAdminController.php
Original file line number Diff line number Diff line change
@@ -1,24 +1,20 @@
<?php
/**
* Created by PhpStorm.
* User: BMcClure
* Date: 9/10/2016
* Time: 10:29 PM
*/

namespace Drupal\aluminum\Controller;


use Drupal\Core\Controller\ControllerBase;

/**
* Provides a controller for managing Aluminum.
*/
class AluminumAdminController extends ControllerBase {
/**
* {@inheritdoc}
*/
public function content() {
$build = [
'#type' => 'markup',
'#markup' => '<p>' . $this->t('This is the Aluminum configuration section. Use the child pages of this section to configure Aluminum.') . '</p>',
'#allowed_tags' => ['p'],
];

return $build;
Expand Down