Make a custom module importable
If you’ve created a custom module but are getting the message “Imports aren’t set up for this module type” then it’s very easy to add this functionality to your custom module.
In the bean file modules/ABC_Your_Module/ABC_Your_Module.php
simply
add the line
var $importable = true;
After ...
more ...