function acquia_agent_theme_registry_alter in Acquia Connector 6
Same name and namespace in other branches
- 6.2 acquia_agent/acquia_agent.module \acquia_agent_theme_registry_alter()
Implementation of hook_theme_registry_alter().
Related topics
File
- acquia_agent/
acquia_agent.module, line 334 - Acquia Agent securely sends information to Acquia Network.
Code
function acquia_agent_theme_registry_alter(&$theme_registry) {
if (isset($theme_registry['admin_menu_icon'])) {
$theme_registry['admin_menu_icon']['function'] = 'acquia_agent_menu_icon';
}
}