I've always disliked that I cannot chose which user information is displayed to the outside world. I often prefer to show "Firstname Lastname" rather than a often cryptic username. I could of course change this display in the node and comment functions of my theme, but then it would be confusing if the same user essentially has another name in the user search or the admin interface. Therefore I propse to make format_name a themabel function. Patch attached.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

moshe weitzman’s picture

makes sense to me.

Steven’s picture

theme('format_name') is a bit weird... why not have theme('name') ?

Oh and this might be a good time to change it so that it uses drupal_substr() and drupal_strlen() to cut off the username. This would mean the visual string length before chopping is more consistent.

Dries’s picture

Better would be theme('username'), I think. "format_" is redundant in combination with "theme", but "name" is a bit too generic a name, I'd say. Otherwise it looks good. Not tested though.

killes@www.drop.org’s picture

FileSize
20.05 KB

Ok, implemented the suggested changes.

Since it did get such a warm welcome, how about doing the same to the format_date function and removing the various settings (everythign but time zone) associated with it?

Bèr Kessels’s picture

I tried this patc hon a dutch localised system. It works as expected. I like it.

A question though, which also applies to the recently introduced patch to move date settings to locales:
Unglish native speakers will now need to enable localisation, just for the sake of changing small things like the date, or, in this case, the name.
However, personally I do not really mind that, since I use locale on all my sites anyway. But others might not like that (performance) penalty. Ideas?

killes@www.drop.org’s picture

thanks for testing.

Why do you think that you'd need to enable locale.module for changing the name?

You need to implement a themable function in your theme, that's it.

Bèr Kessels’s picture

NM. just me being confused. I have been workingon some complex (multilinugal) things lately. Somehow that flooded my mind. I guess.
I tested this, to theme an icon of teh user (avatar) in front of the usernames. on newsphoto.nl we want to present everyone with images. (teh dev site is not public, so I cannot show the result, yet)

Dries’s picture

Status: Needs review » Needs work

Patch no longer applies.

killes@www.drop.org’s picture

Status: Needs work » Reviewed & tested by the community
FileSize
20.14 KB

updated

Dries’s picture

Status: Reviewed & tested by the community » Fixed

Committed to HEAD. Please update the documentation.

Anonymous’s picture

Anonymous’s picture

Anonymous’s picture

Anonymous’s picture

Anonymous’s picture

Status: Fixed » Closed (fixed)