You are here

function easy_social_admin_config_extra in Easy Social 7.2

Form callback. Home tab for extra settings pages.

See also

easy_social_menu()

1 string reference to 'easy_social_admin_config_extra'
easy_social_menu in ./easy_social.module
Implements hook_menu().

File

includes/easy_social.admin.inc, line 172
Easy Social admin settings.

Code

function easy_social_admin_config_extra() {
  $form = array();
  $form['easy_social_extra'] = array(
    '#markup' => '<h4>' . t('Use the secondary tabs on the right to access extra settings for certain widgets') . '</h4>',
  );
  return $form;
}