From 5d59d3c34d298c30e1d130eebfba606fe1b11476 Mon Sep 17 00:00:00 2001 From: Hans-Emil Skogh Date: Sat, 28 Jan 2012 20:39:38 +0100 Subject: [PATCH] Added icons for protection levels "signature" and "signatureOrSystem". This completes the list of published protection levels so far. --- wp-fdroid/wp-fdroid.php | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/wp-fdroid/wp-fdroid.php b/wp-fdroid/wp-fdroid.php index 8980b532..11e1fc71 100644 --- a/wp-fdroid/wp-fdroid.php +++ b/wp-fdroid/wp-fdroid.php @@ -382,19 +382,31 @@ class FDroid $iconString .= ''; + $iconString .= '">⚠'; // WARNING SIGN } elseif($protection_level=='normal') { $iconString .= ''; + $iconString .= '">ⓘ'; // CIRCLED LATIN SMALL LETTER I + } + elseif($protection_level=='signature') { + $iconString .= ''; // HEAVY TEARDROP-SPOKED ASTERISK + } + elseif($protection_level=='signatureOrSystem') { + $iconString .= ''; // ATOM SYMBOL } else { $iconString .= ''; + $iconString .= '">⚙'; // GEAR } return $iconString; -- 2.30.2