Last active
July 8, 2026 23:05
-
-
Save bickart/e58a2e97cd92851c243ed819a4e01324 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