README.txt 1021 B

12345678910111213141516171819202122232425262728293031323334353637
  1. CONTENTS OF THIS FILE
  2. ---------------------
  3. * Introduction
  4. * Installation
  5. * Implementation
  6. INTRODUCTION
  7. ------------
  8. Current Maintainer: Travis Carden <http://drupal.org/user/236758>
  9. Checklist API Provides a simple interface for modules to create fillable,
  10. persistent checklists that track progress with completion times and users. See
  11. checklistapi_example.module for an example implementation.
  12. INSTALLATION
  13. ------------
  14. Checklist API is installed in the usual way. See
  15. http://drupal.org/documentation/install/modules-themes/modules-7.
  16. IMPLEMENTATION
  17. --------------
  18. Checklists are declared as multidimensional arrays using
  19. hook_checklistapi_checklist_info(). They can be altered using
  20. hook_checklistapi_checklist_info_alter(). Checklist API handles creation of menu
  21. items and permissions. Progress details are saved in one Drupal variable per
  22. checklist. (Note: it is the responsibility of implementing modules to remove
  23. their own variables on hook_uninstall().)
  24. See checklistapi.api.php for more details.