You are here

function twitter_post_twitter_post_content_type_admin_title in Twitter 7.5

CTools content type callback to get the title of this pane.

File

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

Code

function twitter_post_twitter_post_content_type_admin_title($subtype, $conf, $context) {
  if (isset($context->identifier)) {
    $message = t('"@s" node form "Post to Twitter" options', array(
      '@s' => $context->identifier,
    ));
  }
  else {
    $message = t('Node form "Post to Twitter" options');
  }
  return $message;
}