Created
July 8, 2026 23:02
-
-
Save bickart/d9e3342d92949abea4d88b0a8b5af4dd 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
| <?php | |
| $dictionary['MyModule'] = [ | |
| 'table' => 'mymodule', | |
| 'audited' => true, | |
| 'fields' => [ | |
| // Core module fields would follow here... | |
| ], | |
| 'indices' => [ | |
| // Core module indexes would follow here... | |
| ], | |
| ]; | |
| \VardefManager::createVardef('MyModule', 'MyModule', [ | |
| 'basic', | |
| 'assignable', | |
| 'currency', | |
| ]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment