Please consider adding a simple README.TXT, basic "how to use" section on your d.o project page, and an admin message on hook_enable which all simply say, "gridder will be activated for users who have permission on the permissions page"

Thanks for the simple, great module! Looking forward to using it on a current project!

Comments

texas-bronius’s picture

Fyi, I just added something like this to a module like:

/**
 * Implementation of hook_enable()
 *
 */
function uc_disable_enable() {
  drupal_set_message(t("uc_disable enabled: Ubercart Store will now be enabled only for roles with 'enable store checkout' in User Permissions page."));
}

If I knew a proper way to link straight to the admin permissions page within a drupal_set_message, I'd do that as well..

Thanks!
-Bronius