You are here

function shortcode_embed_content_node_tip in Shortcode 7.2

1 string reference to 'shortcode_embed_content_node_tip'
shortcode_embed_content_shortcode_info in shortcode_embed_content/shortcode_embed_content.module
Implements hook_shortcode_info()

File

shortcode_embed_content/shortcode_embed_content.module, line 172

Code

function shortcode_embed_content_node_tip($format, $long) {
  $output = '';
  $output = '<p><strong>[embed_content nid=nodeid (class="additional class")][/embed_content]</strong> ';
  if ($long) {
    $output .= 'Embed a node by nid into the text. Additional class names can be added by the <em>class</em> parameter.</p>';
  }
  else {
    $output .= 'Embed a node by nid into the text. Additional class names can be added by the <em>class</em> parameter.</p>';
  }
  return $output;
}