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

function smarty_modifier_contact_info($value)
{
    if (preg_match('/^([^:]*): (.*@.*)$/', $value, $match)) {
        return '[[' . $match[2] . '|' . $match[1] . ']]';
    }

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

?>