cvs diff: Diffing .
? .buildpath
? .project
Index: term_permissions.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/term_permissions/term_permissions.module,v
retrieving revision 1.8
diff -u -p -r1.8 term_permissions.module
--- term_permissions.module	2 Dec 2009 20:45:48 -0000	1.8
+++ term_permissions.module	2 Dec 2009 20:59:11 -0000
@@ -1,5 +1,4 @@
 <?php
-
 // $Id: term_permissions.module,v 1.8 2009/12/02 20:45:48 deviantintegral Exp $
 
 /**
@@ -7,6 +6,21 @@
  * Allows access to terms in a vocabulary to be limited by user or role.
  */
 
+/**
+ * Implementation of hook_help().
+ */
+function term_permissions_help($path, $arg) {
+  switch ($path) {
+    case 'admin/help#term_permissions':
+      $output = '<p>' . t('This module allows taxonomy administrators the ability to restrict setting individual terms on nodes by user or role. If a user is unable to set any terms for a required vocabulary, they are blocked from adding or editing content with that vocabulary.') . '</p>';
+      $output .= '<p>' . t('To add permissions for a term, go to Administer >> Content Management >> Taxonomy, and add or edit a term. If the permissions are left blank, the term is available to all users.') . '</p>';
+      return $output;
+  }
+}
+
+/**
+ * Implementation of hook_menu().
+ */
 function term_permissions_menu() {
   $items = array();
   $items['term-permissions/autocomplete'] = array(
