X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=plugins%2Ffunction.profile.php;h=abfb165f2565eb6a078dfce4b4b4f7634eda8d2a;hb=009f4a24bd8743b2cf180b59cb2a2d90ff3f8640;hp=516f019f2b48fe4f750fe517b552c26c76428988;hpb=45ea6160465aeba0aa780e49c12272819dedffd1;p=platal.git diff --git a/plugins/function.profile.php b/plugins/function.profile.php index 516f019..abfb165 100644 --- a/plugins/function.profile.php +++ b/plugins/function.profile.php @@ -27,6 +27,7 @@ function smarty_function_profile($params, $smarty) $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'); if (is_int($user) || ctype_digit($user)) { $user = User::getWithUID($user); @@ -37,15 +38,19 @@ function smarty_function_profile($params, $smarty) } else { $name = pl_entities($user->fullName()); } - if ($with_sex && $user->isFemale()) { - $name = '•' . $name; - } if ($with_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) {