summaryrefslogtreecommitdiffstats
path: root/plugins/modifier.contact_info.php
blob: 6537b7ac86b6a9ab540a9bc1acd0f555a9698692 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

function smarty_modifier_contact_info($value)
{
    if (is_array($value)) {
        return '[[' . array_values($value)[0] . '|' . array_keys($value)[0] . ']]';
    }

    return '[[' . $value . '@spline.inf.fu-berlin.de' . '|' . $value . ']]';
}

?>