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.

23 lines
1.3 KiB

  1. <template OverwriteFlag="false" DocrootFlag="false" DirectorySuffix="" TargetDirectory="<%= __DATA_META_CONTROLS__ %>" TargetFileName="<%= $objTable->ClassName %>MetaControl.class.php"/>
  2. <?php
  3. require(__DATAGEN_META_CONTROLS__ . '/<%= $objTable->ClassName %>MetaControlGen.class.php');
  4. /**
  5. * This is a MetaControl customizable subclass, providing a QForm or QPanel access to event handlers
  6. * and QControls to perform the Create, Edit, and Delete functionality of the
  7. * <%= $objTable->ClassName %> class. This code-generated class extends from
  8. * the generated MetaControl class, which contains all the basic elements to help a QPanel or QForm
  9. * display an HTML form that can manipulate a single <%= $objTable->ClassName %> object.
  10. *
  11. * To take advantage of some (or all) of these control objects, you
  12. * must create a new QForm or QPanel which instantiates a <%= $objTable->ClassName %>MetaControl
  13. * class.
  14. *
  15. * This file is intended to be modified. Subsequent code regenerations will NOT modify
  16. * or overwrite this file.
  17. *
  18. * @package <%= QCodeGen::$ApplicationName; %>
  19. * @subpackage MetaControls
  20. */
  21. class <%= $objTable->ClassName %>MetaControl extends <%= $objTable->ClassName %>MetaControlGen {
  22. }
  23. ?>