$value){
if ($key == "ins_title" or $key=="ins_active" or $key=="saved_data" or $key=="doc_url" ) continue;
if (is_array($value)) continue;
$return .= " ".$value;
}
$text = str_replace("<","<",mb_substr($return,0,50, 'utf8'));
return $text? $text." ... ":'';
}
function _textlist_set_active($x, $data){
global $_CFG;
return '';
}
function _textlist_add_bullets($sort_id, $full_data){
static $js;
static $counter = 0;
global $_CFG;
$counter ++;
$return = '
';
$return .= '
';
if (!$js){
$js =
'';
$return .= $js;
}
return $return;
}
function _textlist_cut_title($x) {
if (mb_strlen($x, "utf-8") > 50) {
return mb_substr($x, 0, 50, "utf-8").'.....';
} else {
return $x;
}
}
?>