You are here

function linkedin_status_permission in LinkedIn Integration 7

@todo Please document this function.

See also

http://drupal.org/node/1354

File

linkedin_status/linkedin_status.module, line 30
Main hooks implementation for LinkedIn Profile module

Code

function linkedin_status_permission() {
  return array(
    'update LinkedIn status' => array(
      'title' => t('update LinkedIn status'),
      'description' => t('Post to LInkedin on node edit/creation.'),
    ),
    'use custom status text' => array(
      'title' => t('use custom status text'),
      'description' => t('Change the text sent to LinkedIn when posting.'),
    ),
  );
}