array ( 'callback' => 'about_page', 'display' => '🛈' // Perhaps ℹ http://www.fileformat.info/info/unicode/char/1f6c8/index.htm ), 'logout' => array ( 'security' => true, 'callback' => 'logout_page', 'display' => '' ), 'oauth' => array( 'callback' => 'user_oauth', 'hidden' => 'true', ), 'widgets' => array( 'callback' => 'css', 'hidden' => 'true', ), )); function logout_page() { user_logout(); header("Location: " . BASE_URL); /* Redirect browser */ exit; } function about_page() { theme('page', 'About', theme('about')); } session_start(); menu_execute_active_handler();