Skip to content
Snippets Groups Projects
Select Git revision
  • 7.x-1.0-alpha2
  • 2.1.x default
  • 3.0.x
  • wip
  • 7.x-1.x
  • 2.0.x
  • master
  • 8.x-1.x
  • 2.1.6
  • 2.1.5
  • 2.1.4
  • 2.1.3
  • 7.x-1.4
  • 2.1.2
  • 2.1.1
  • 7.x-1.3
  • 2.1.0
  • 2.0.0
  • 8.x-1.11
  • 8.x-1.10
  • 8.x-1.9
  • 8.x-1.8
  • 8.x-1.7
  • 8.x-1.6
  • 8.x-1.5
  • 8.x-1.4
  • 8.x-1.3
  • 8.x-1.2
28 results

checklistapi

  • Clone with SSH
  • Clone with HTTPS
  • TravisCarden's avatar
    Travis Carden authored
    2dc6a2a2
    History
    CONTENTS OF THIS FILE
    ---------------------
    
     * Introduction
     * Installation
     * Implementation
    
    
    INTRODUCTION
    ------------
    
    Current Maintainer: Travis Carden <http://drupal.org/user/236758>
    
    Checklist API Provides a simple interface for modules to create fillable,
    persistent checklists that track progress with completion times and users. See
    checklistapi_example.module for an example implementation.
    
    
    INSTALLATION
    ------------
    
    Checklist API is installed in the usual way. See
    http://drupal.org/documentation/install/modules-themes/modules-7.
    
    
    IMPLEMENTATION
    --------------
    
    Checklists are declared as multidimensional arrays using
    hook_checklistapi_checklist_info(). They can be altered using
    hook_checklistapi_checklist_info_alter(). Checklist API handles creation of menu
    items and permissions. Progress details are saved in one Drupal variable per
    checklist. (Note: it is the responsibility of implementing modules to remove
    their own variables on hook_uninstall().)
    
    See checklistapi.api.php for more details.