You are here

function node_embed_filter_node_embed_tips in Node Embed 7

Tips callback for hook_filter.

1 string reference to 'node_embed_filter_node_embed_tips'
node_embed_filter_info in ./node_embed.module
Implements hook_filter_info().

File

./node_embed.module, line 42
This module defines an input filter for taking an embed code syntax ([[nid: ###]]) and removing the embed code and replacing with a rendered node view at that position in the text field.

Code

function node_embed_filter_node_embed_tips($filter, $format, $long) {
  return t('[[nid:123]] - Insert a node content');
}