From: Hans-Emil Skogh Date: Sat, 28 Jan 2012 19:39:38 +0000 (+0100) Subject: Added icons for protection levels "signature" and "signatureOrSystem". X-Git-Tag: 0.1~939 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=5d59d3c34d298c30e1d130eebfba606fe1b11476;p=fdroidserver.git Added icons for protection levels "signature" and "signatureOrSystem". This completes the list of published protection levels so far. --- 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;