Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
I was wondering if there is a module that can show the drupal page after what role a user belongs to.
i.e: A user which is file & forum moderator, he will only have the 'latest forum topics' and 'lates files' blocks at the front page, but he still has access to the other stuff, but he has to click the links to enter them.
So this has to be a block access module or something?
I would like some input about the location of a global filter configuration page.
The hook_filter documentation says:
If the filter's behaviour depends on an extensive list and/or external data (e.g. a list of smileys, a list of glossary terms) then filters are allowed to provide a separate, global configuration page rather than provide settings per format. In that case, there should be a link from the format-specific settings to the separate settings page.
It does not specify, however, where this configuration page should be located.
The members module, even after a seemingly correct setup, refuses to allow access to users with roles who have permissions to access the module. I can only get the Administrator role up and running. I think this is becasue the user_access function in the user.module will let the UID =1 have access to just about anything.
// User #1 has all priveleges:
if ($user->uid == 1) {
return 1;
}
I checked the permission table of the database and 'access members list' is added to the table. That is what the members.module asks for in .....
Is there a way to do that? It is quite annoying and can sometimes take a long while. And if it cannot access the target website, I get error messages. (The content are stored in the database though)
Can anyone provide me with a link to "product" documentation ? I mean, docs about the "product" module. I am trying to understand how it works, how can I add attributes to a product ( eg name, price ). Is it possible to do such things ?