Drupal hide admin menu when theme is not admin theme

Heres how to hide the administration menu from the admin_menu module when not on a page that is using the admin theme.
<?php
/**
 * Implements hook_init().
 * 
 * Disables Admin Menu.
 */
function example_init() {
// Disables administration_menu in the default theme.
  if (module_exists('admin_menu') && $GLOBALS['theme'] != variable_get('admin_theme', NULL)) {
    admin_menu_suppress();
  }
}
?>

Article Type

General