Created
May 26, 2015 23:43
-
-
Save skwashd/3ad9f8d215cd119f8221 to your computer and use it in GitHub Desktop.
Changing the title of the contact form in Drupal
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 | |
| /** | |
| * Implements hook_menu_alter(). | |
| */ | |
| function my_menu_alter(&$items) { | |
| $items['contact']['title'] = 'Contact Me'; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment