Last active
September 18, 2019 16:46
-
-
Save mkorostoff/8d646585a95ba511d1fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Matthew | |
description: A simple hello world module. | |
core: 8.x | |
package: Custom | |
type: module |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @file | |
* Code for the matthew.module. | |
*/ | |
function matthew_page_alter(&$page) { | |
drupal_set_message('Hello world'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment