... Elxis version 2009.3 codename Aphrodite is out, download it from Elxis Download Center (EDC) ...
Elxis Wiki menu icon
From Elxis Official Documentation
On Elxis 2009.0 or newer developers can create menu icons for the Elxis menu bar that link to Elxis Wiki articles. To do so, add the menu icon link in your component's toolbar html file (toolbar._component_name_here.html.php).
General usage
/* $page: the Elxis wiki page $alt: Used for icon's and link's alt and title attributes. */ mosMenuBar::wiki($page='', $alt='');
Examples
//link to Wiki's front-page mosMenuBar::wiki(); //link to Wiki's Static cache article mosMenuBar::wiki('Static_Cache'); //link to this article mosMenuBar::wiki('Elxis_Wiki_menu_icon'); //link to this article with custom alt text mosMenuBar::wiki('Elxis_Wiki_menu_icon', 'Get help for Elxis wiki menu icon');
The text shown bellow the menu icon is always Elxis Wiki.

