A QCodo powered CMS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.4 KiB

  1. This directory is for customizations and additions of the Qcodo Codegen
  2. Templates and Subtemplates. If there are any template files in this directory which have the
  3. same name as a template or subtemplate file in /includes/qcodo/codegen/templates, then the
  4. file in this directory will be used *instead* of the one there.
  5. If there are any template files in this directory in *addition* to the ones in
  6. /includes/qcodo/codegen/templates, these additional template files will be
  7. processed as well.
  8. Feel free to add as you wish. Just remember the naming structure for CodeGen
  9. template files:
  10. /includes/qcodo/codegen/templates/[TYPE]/[MODULE]/[FILE]
  11. Where [TYPE] is the object being generated, for example:
  12. * db_orm
  13. * db_type
  14. And [MODULE] is the category of file being generated, for example:
  15. * class_gen - templates and subtemplates for the Data Class Gen file
  16. * class_subclass - templates and subtemplates for the Data Class customizable subclass
  17. * drafts - templates and subtemplates for all things with regards to draft forms/panels
  18. * meta_control - templates and subtemplates for the metacontrol
  19. * meta_datagrid - templates and subtemplates for the metadatagrid
  20. And [FILE] is the filename of the template or subtemplate, itself.
  21. Note that any file with a "_" prefix is considered a template and will
  22. be processed by the code generator. All other files are considered
  23. subtemplates, and are only processed if envoked by a template.