LZDigital Posted October 3, 2018 Share Posted October 3, 2018 How do I add an icon to my application? Link to comment Share on other sites More sharing options...
newbie LAC Posted October 3, 2018 Share Posted October 3, 2018 Add in \applications\%application%\dev\lang.php 'menutab__application_icon' => 'icon', In my case 'menutab__football_icon' => 'futbol-o', Add in \applications\%application%\Application.php /** * [Node] Get Icon for tree * * @note Return the class for the icon (e.g. 'globe') * @return string|null */ protected function get__icon() { return 'icon'; } In my case /** * [Node] Get Icon for tree * * @note Return the class for the icon (e.g. 'globe') * @return string|null */ protected function get__icon() { return 'futbol-o'; } Link to comment Share on other sites More sharing options...
LZDigital Posted October 3, 2018 Author Share Posted October 3, 2018 Thank you 🙂 Figured out the first one, but couldn't figure out the second one till your response. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.