X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=plugins%2Ffunction.profile.php;h=fc7087fc61a02ad46a80b1aa2bbb42f4f3397a01;hb=3424387cde6c635ff16c3b5459c4caa88bb76e2e;hp=8d34076a02c85357b93db5fdf9320817454810fc;hpb=832e6fcb12ba94ac0f678837d19aaaa62384756f;p=platal.git diff --git a/plugins/function.profile.php b/plugins/function.profile.php index 8d34076..fc7087f 100644 --- a/plugins/function.profile.php +++ b/plugins/function.profile.php @@ -1,6 +1,6 @@ b('promo', false) || $params->b('cat', false); + $with_sex = $params->b('sex', true); + $with_link = $params->b('link', true); + $with_dir = $params->b('directory', true); + $with_groupperms = $params->b('groupperms', true); + $raw = $params->b('raw', false); + $user = $params->v('user'); + $profile = $params->v('profile'); - $name = pl_entities($user->fullName()); - if ($with_sex && $user->isFemale()) { - $name = '•' . $name; + if (is_int($user) || ctype_digit($user)) { + $user = User::getWithUID($user); + } + + if ($with_dir) { + $name = pl_entities($user->directoryName()); + } else { + $name = pl_entities($user->fullName()); } if ($with_promo) { - $promo = $user->promo(); - if ($promo) { - $name .= ' (' . pl_entities($promo) . ')'; - } + $promo = $user->category(); + if ($promo) { + $name .= ' (' . pl_entities($promo) . ')'; + } + } + if ($raw) { + return $name; + } + + if ($with_sex && $user->isFemale()) { + $name = '•' . $name; } if ($with_link) { - $profile = ($user instanceof Profile) ? $user : $user->profile(); - if ($profile) { - $name = '' . $name . ''; - } + if (is_null($profile)) { + $profile = $user->profile(); + } + + if ($profile) { + $name = '' . $name . ''; + } + } + if ($profile && $profile->isDead()) { + $name .= ' †'; + } else if ($user->lost) { + $name .= ' Patte cassée'; + } + if ($with_groupperms && $user instanceof User && $user->group_perms == 'admin' && !empty($name)) { + $name = '' . $name . ''; } return $name; } -// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: +// vim:set et sw=4 sts=4 sws=4 foldmethod=marker fenc=utf-8: ?>