You are here

function vkxp_help in VK CrossPoster 6.3

Same name and namespace in other branches
  1. 6 vkxp.module \vkxp_help()
  2. 6.2 vkxp.module \vkxp_help()
  3. 7.2 vkxp.module \vkxp_help()
  4. 7 vkxp.module \vkxp_help()

Implements hook_help().

File

./vkxp.module, line 28

Code

function vkxp_help($path) {
  switch ($path) {
    case 'admin/settings/vkxp':
      return t('Vkontakte CrossPoster module allows to post nodes automatically to social network VK.');
    case 'admin/help#vkxp':
      $output = '';
      $output .= '<p>' . t('Vkontakte CrossPoster module allows users to post nodes automatically to social network VK.') . '</p>';
      $output .= '<p>' . t('It requires creating web site application at http://vk.com/editapp?act=create') . '</p>';
      $output .= '<p>' . t('After creating application you should go to the module settings page and copy there Application ID and Secret code.') . '</p>';
      return $output;
  }
}