Created
October 16, 2023 10:23
-
-
Save mheesters/c822fce74c2457d814103974e434f8f2 to your computer and use it in GitHub Desktop.
Drupal module name generator
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 | |
echo '<h2>Drupal module name generator</h2>'; | |
$aFirst = array('better','menu','path','auto','views','services','rich','advanced','simple','responsive'); | |
$aSecond = array('exposed','media','token','node','feed','menu','views','image','style','core'); | |
$aThird = array('filters','features','fields','context','feeds','nodes','style'); | |
echo 'Please install the: <strong>'.$aFirst[rand(0,count($aFirst)-1)].' '.$aSecond[rand(0,count($aSecond)-1)].' '.$aThird[rand(0,count($aThird)-1)].' </strong>module.'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Got silly after working with Drupal.
After a while you just think: who's coming up with these modules and names?
Well.. probably this script