return $_cache[$permissionName];
}
+ /**
+ * {@inheritDoc}
+ */
+ public function isModulePermissionSupported() {
+ return TRUE;
+ }
+
/**
* Remove all vestiges of permissions for the given module.
*
* Does nothing in Drupal 6.
*/
function uninstallPermissions($module) {
+ // D6 allows us to be really lazy... things get cleaned up when the admin form is next submitted...
}
/**
* Does nothing in Drupal 6.
*/
function upgradePermissions($permissions) {
+ // D6 allows us to be really lazy... things get cleaned up when the admin form is next submitted...
}
/**