/[drupal]/contributions/modules/checklist/checklist.module
ViewVC logotype

Contents of /contributions/modules/checklist/checklist.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.4 - (show annotations) (download) (as text)
Thu Oct 29 04:35:17 2009 UTC (3 weeks, 5 days ago) by davereid
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +8 -852 lines
File MIME type: text/x-php
by Dave Reid: Cleared out existing code in preparation for new development.
1 <?php
2 // $Id$
3
4 define('CHECKLIST_TYPE_GLOBAL', 'global');
5 define('CHECKLIST_TYPE_USER', 'user');
6 define('CHECKLIST_TYPE_PAGE', 'page');
7
8 /**
9 * Implementation of hook_menu().
10 */
11 function checklist_menu() {
12 $items['user/%user/checklist'];
13 $items['checklist'];
14 return $items;
15 }

  ViewVC Help
Powered by ViewVC 1.1.2