X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=plugins%2Ffunction.profile.php;h=abfb165f2565eb6a078dfce4b4b4f7634eda8d2a;hb=47712f77e9718652c516c85cde99a58d142f67c9;hp=98448ee8431ba4e9b2e79bdc8a368627e5253f92;hpb=020a95fa78dc544b3064739d409026a0056d98f4;p=platal.git diff --git a/plugins/function.profile.php b/plugins/function.profile.php index 98448ee..abfb165 100644 --- a/plugins/function.profile.php +++ b/plugins/function.profile.php @@ -19,7 +19,7 @@ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ***************************************************************************/ -function smarty_function_profile($params, &$smarty) +function smarty_function_profile($params, $smarty) { $params = new PlDict($params); $with_promo = $params->b('promo', false) || $params->b('cat', false); @@ -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) {