A Qcodo based CMS/ecommerce framework
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.

19 lines
699 B

12 years ago
  1. <?php
  2. require(__DATAGEN_CLASSES__ . '/MenuStatusTypeGen.class.php');
  3. /**
  4. * The MenuStatusType class defined here contains any
  5. * customized code for the MenuStatusType enumerated type.
  6. *
  7. * It represents the enumerated values found in the "menu_status_type" table in the database,
  8. * and extends from the code generated abstract MenuStatusTypeGen
  9. * class, which contains all the values extracted from the database.
  10. *
  11. * Type classes which are generally used to attach a type to data object.
  12. * However, they may be used as simple database indepedant enumerated type.
  13. *
  14. * @package Quasi
  15. * @subpackage ORM
  16. */
  17. abstract class MenuStatusType extends MenuStatusTypeGen {
  18. }
  19. ?>