remove unneeded function page_type_translate()

This commit is contained in:
rabuzarus 2015-12-03 00:08:43 +01:00
parent d963cdfe48
commit 3af7cff281
1 changed files with 0 additions and 31 deletions

View File

@ -2288,37 +2288,6 @@ function formatBytes($bytes, $precision = 2) {
return round($bytes, $precision) . ' ' . $units[$pow];
}
/**
* @brief Translate the PAGE type flags in human readable string
*
* @param int $page_type
* @return string $trans_type
*/
function page_type_translate($page_type) {
// ToDo: we need a good interpretable translation for PAGE_SOAPBOX
// and PAGE_PRVGROUP
switch ($page_type) {
case PAGE_NORMAL:
$trans_type = t('Normal Account');
break;
case PAGE_SOAPBOX:
$trans_type = t('Fan Page');
break;
case PAGE_COMMUNITY:
$trans_type = t('Community Forum');
break;
case PAGE_FREELOVE:
$trans_type = t('Open Forum');
break;
case PAGE_PRVGROUP:
$trans_type = t('Private Forum');
break;
}
return $trans_type;
}
/**
* @brief translate and format the networkname of a contact
*