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.
In Danland theme on the front page there is a ' No front page content has been created yet.'
When I go to 'Add new content ' and add a new Page, it is not connected to my front page.
I am trying to create a site that list the collection of past university board examination questions of different universities. I want the users to be able to filter the questions in each set of exam paper according to year of examination, university, level of studies and most importantly, the chapters of that particular subject, so that users can have all the question from the chapter at one place. All other except the last one can easily be done by creating a field for each of them in the custom content type, and then using views to expose these fields to the user.
But I cannot do the same for the chapters of the subject. Let's take an example, in medicine we have a board paper on Anatomy. But inside the anatomy papers, questions are asked from different systems (respiratory, neurosensory, gastro-intestinal and so on). So, if i simply create a node for one anatomy paper, I would not be able to allow the user to choose questions from among different systems, right??
I'd like to add to my module so that it makes changes to an existing core function.
the function is user_admin_settings.
I'd like to add additional permissions to control access to parts of the page.
e.g. to stop people changing the Admin Role but they can still edit the email text and other parts.
I'm not quite sure what to do.
Should I create a function in my module called "my_module_user_admin_settings" and put the changes I want into it or do I have to re-write the whole function again in my module?