diff options
author | Mario <mario@mariovavti.com> | 2024-08-02 08:50:50 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-08-02 08:50:50 +0000 |
commit | c793cea2f036411086180420f9dc43071bafed4e (patch) | |
tree | 11eb80c15b465d8a83dca68ffd370624ac97e222 /Zotlabs/Lib/PermissionDescription.php | |
parent | 4e19f1c8be6d7919839fb73e11e5a3929673b78e (diff) | |
download | volse-hubzilla-c793cea2f036411086180420f9dc43071bafed4e.tar.gz volse-hubzilla-c793cea2f036411086180420f9dc43071bafed4e.tar.bz2 volse-hubzilla-c793cea2f036411086180420f9dc43071bafed4e.zip |
fa2bi: catch some remains
Diffstat (limited to 'Zotlabs/Lib/PermissionDescription.php')
-rw-r--r-- | Zotlabs/Lib/PermissionDescription.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Zotlabs/Lib/PermissionDescription.php b/Zotlabs/Lib/PermissionDescription.php index 51d5f890d..13df60b60 100644 --- a/Zotlabs/Lib/PermissionDescription.php +++ b/Zotlabs/Lib/PermissionDescription.php @@ -117,7 +117,7 @@ class PermissionDescription { } /** - * Returns an icon css class name if an appropriate one is available, e.g. "fa-globe" for Public, + * Returns an icon css class name if an appropriate one is available, e.g. "bi-globe" for Public, * otherwise returns empty string. * * @return string icon css class name (often FontAwesome) @@ -125,12 +125,12 @@ class PermissionDescription { public function get_permission_icon() { switch($this->channel_perm) { - case 0:/* only me */ return 'fa-eye-slash'; - case PERMS_PUBLIC: return 'fa-globe'; - case PERMS_NETWORK: return 'fa-share-alt-square'; // fa-share-alt-square is very similiar to the hubzilla logo, but we should create our own logo class to use - case PERMS_SITE: return 'fa-sitemap'; - case PERMS_CONTACTS: return 'fa-group'; - case PERMS_SPECIFIC: return 'fa-list'; + case 0:/* only me */ return 'bi-eye-slash'; + case PERMS_PUBLIC: return 'bi-globe'; + case PERMS_NETWORK: return 'bi-share'; // bi-share is very similiar to the hubzilla logo, but we should create our own logo class to use + case PERMS_SITE: return 'bi-geo'; + case PERMS_CONTACTS: return 'bi-people'; + case PERMS_SPECIFIC: return 'bi-list-ul'; case PERMS_AUTHED: return ''; case PERMS_PENDING: return ''; default: return ''; |