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 am looking for mailhandler get mailhandler to handle attachments properly. I found some prototype code using google on drupal.Kollum.org in bruno's sandbox that looks like it should work. I was wondering how much of a prototype this code actually is, and what needs to be developed for it to work properly. I am interested in helping with the development of it.
Maybe I am too tired but I just can't figure out how you are supposed to do this. I am trying to use the tablesort and pager together with data form a form to list some things.
In my test I have one form with two fields (name_first,name_last), this form is created with drupals form-function and therefore the fields are put in edit['_name_']. The test selects persons from db and lists them in a table, so far everything works as expected. I was rather impressed by how easy it was, but then I realized that it wasn't (or more likely I am doing something wrong).
I guess I dont understand permissions...I created a new block v4.4 module with the following code from permissions.
function onthisdate_perm() {
return array("access onthisdate", "administer onthisdate");
}
These new perms appear in the list of perms....but I would have assumed that since I defined these new perms, an anon user would not be able to see my module unless I checked the anon user column in the permission list for the access onthisdate module....but anon can see the block module even with this unchecked.
I'm using Drupal to build a site, and one of the requirements is that it should be easy to link to other people’s profiles (I've added a whole bunch of fields to the profile module so you get a mini biography about the person and their role in the organisation).
Currently to link to a person you need user/view/ what I'd like to do is /user/view/.
What’s the easiest way to achieve this? URL Aliasing only seems to work on nodes.