1
0
mirror of https://github.com/e107inc/e107.git synced 2025-02-24 16:52:43 +01:00
php-e107/e107_files/shortcode/breadcrumb.sc
2006-12-02 04:36:16 +00:00

17 lines
232 B
Python
Executable File

global $$parm;
$bc = $$parm;
$flist = explode(",", $bc['fieldlist']);
$ret = "";
foreach($flist as $f)
{
if($bc[$f]['value'])
{
$ret .= $bc[$f]['value'];
if($bc[$f]['sep'])
{
$ret .= $bc[$f]['sep'];
}
}
}
return $ret;