function shareaholic_admin_settings in Share Buttons, Related Posts, Content Analytics - Shareaholic 8
Same name and namespace in other branches
- 7.3 shareaholic.module \shareaholic_admin_settings()
Renders page for shareaholic app manager settings
Return value
The theme to render the app manager page
2 string references to 'shareaholic_admin_settings'
- shareaholic_menu in ./shareaholic.module 
- Implementation of hook_menu()
- shareaholic_theme in ./shareaholic.module 
- Implements hook_theme().
File
- ./shareaholic.module, line 120 
- Allows site owner to add share buttons/recommendations on their website
Code
function shareaholic_admin_settings() {
  // check for module update
  ShareaholicAdmin::update_check();
  ShareaholicUtilities::share_counts_api_connectivity_check();
  return theme('shareaholic_admin_settings');
}