Skip to content

Instantly share code, notes, and snippets.

@jrotering
Created March 22, 2013 04:00
Show Gist options
  • Save jrotering/5218870 to your computer and use it in GitHub Desktop.
Save jrotering/5218870 to your computer and use it in GitHub Desktop.
Returns the fullname value for the given user ID. Example: <div>Last Edited By: [[getFullname?&id=`[[*editedby]]`]]</div>
if ($user = $modx->getObject('modUser', $id)) {
if ($profile = $user->getOne('Profile')) {
return $profile->get('fullname');
}
}
return '';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment