# name_show_admin_icons()
name_show_admin_icons()
This function should return an array of the html links or text that should be displayed in the OR administration area. This can be as simple as a text name for your add-on to show users it is simply installed, or a link to one or more administrative or configuration pages for your add-on. You can display a link using this example:
index.php?action=name_addonname_admin
You will need to define the action $_GET variable "name_addonname_admin" in the name_run_action_admin_template() function to define it as an action variable for use from the OR administration area.
An example of a valid function:
<?php
function name_show_admin_icons() {
$admin_link = '<a href="index.php?action=addon_name_admin">name</a>';
return $admin_link;
}
?>