From 3af7cff281d0a0af6759340684adb75723b34071 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Thu, 3 Dec 2015 00:08:43 +0100 Subject: [PATCH] remove unneeded function page_type_translate() --- include/text.php | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/include/text.php b/include/text.php index 89a58cccc0..1b03c39d26 100644 --- a/include/text.php +++ b/include/text.php @@ -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 *