Skip to content

Commit

Permalink
Merge pull request #32165 from colemanw/homeIcons
Browse files Browse the repository at this point in the history
Add icons to CiviCRM menu
  • Loading branch information
colemanw authored Feb 21, 2025
2 parents 531b69e + 1e8d7e8 commit aa556c8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CRM/Core/BAO/Navigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -912,6 +912,7 @@ public static function buildHomeMenu(&$menu) {
'label' => ts('CiviCRM Home'),
'name' => 'CiviCRM Home',
'url' => 'civicrm/dashboard?reset=1',
'icon' => 'crm-i fa-house-user',
'weight' => 1,
],
];
Expand All @@ -921,6 +922,7 @@ public static function buildHomeMenu(&$menu) {
'label' => ts('Hide Menu'),
'name' => 'Hide Menu',
'url' => '#hidemenu',
'icon' => 'crm-i fa-minus',
'weight' => 2,
],
];
Expand All @@ -931,6 +933,7 @@ public static function buildHomeMenu(&$menu) {
'label' => ts('Change Password'),
'name' => 'Change Password',
'url' => 'civicrm/admin/user/password',
'icon' => 'crm-i fa-keyboard',
'weight' => 2,
],
];
Expand All @@ -940,6 +943,7 @@ public static function buildHomeMenu(&$menu) {
'label' => ts('Log out'),
'name' => 'Log out',
'url' => 'civicrm/logout?reset=1',
'icon' => 'crm-i fa-person-walking-arrow-right',
'weight' => 3,
],
];
Expand Down

0 comments on commit aa556c8

Please sign in to comment.