Skip to content

Instantly share code, notes, and snippets.

@mheesters
Created October 16, 2023 10:23
Show Gist options
  • Save mheesters/c822fce74c2457d814103974e434f8f2 to your computer and use it in GitHub Desktop.
Save mheesters/c822fce74c2457d814103974e434f8f2 to your computer and use it in GitHub Desktop.
Drupal module name generator
<?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.';
@mheesters
Copy link
Author

mheesters commented Oct 16, 2023

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment