>
= $f_AdminButtons; ?>
';
}
if ($cc_settings['linkOn'] === 'icon' || $cc_settings['linkOn'] === 'all') {
$_icon = "
$_icon";
} else {
$_icon = "
" . $_icon . "";
}
$_name = ($f_Name ?: pathinfo($f_File_name, PATHINFO_FILENAME));
if ($cc_settings['linkOn'] === 'name' || $cc_settings['linkOn'] === 'all') {
$_name = "
$_name";
} else {
$_name = "
" . $_name . "";
}
$_size = "";
if ($cc_settings['showSize'] === 'on') {
$_size = "
" . strtoupper(pathinfo($f_File_name, PATHINFO_EXTENSION)) .
", " .
nc_bytes2size($f_File_size) .
"";
}
switch ($cc_settings['displayAs']) {
case "icon":
$_return = "
" . $_icon . $_size . "
";
break;
case "name":
$_return = $_name . $_size;
break;
case "full":
default:
$_return = "
" . $_icon . $_name . "
" . $_size;
break;
}
?>
">= $_return; ?>