You are here

function twitter_post_twitter_post_content_type_admin_info in Twitter 7.5

CTools content type callback to provide extra information about this pane.

File

twitter_post/plugins/content_types/twitter_post.inc, line 68

Code

function twitter_post_twitter_post_content_type_admin_info($type, $subtype, $conf, $context = NULL) {
  $output = new stdClass();
  $output->title = t('Post to Twitter');
  $output->content = t('Shows the "Post to Twitter" fields on this node form, if the user has the necessary permission, and either they have added a Twitter account to their site account or there are some Twitter accounts added to the site which are marked as being "Global".');
  return $output;
}