Skip to content

Instantly share code, notes, and snippets.

@billcreswell
Last active August 29, 2015 00:05
Show Gist options
  • Save billcreswell/361c91bb348e1851c678 to your computer and use it in GitHub Desktop.
Save billcreswell/361c91bb348e1851c678 to your computer and use it in GitHub Desktop.
Simple Pluck Module Part 1
```{php}
<?php
//{plugin}_info
function simple_info() {
$module_info = array(
'name' => 'My Simple Demo Module',
'intro' => 'The Simplest Module',
'version' => '0.1',
'author' => 'grwebguy',
'website' => 'http://twitter.com/grwebguy',
'compatibility' => '4.7'
);
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment