You are here

function nodewords_basic_description_prepare in Nodewords: D6 Meta Tags 6.3

Same name and namespace in other branches
  1. 6 nodewords_basic/nodewords_basic.module \nodewords_basic_description_prepare()
  2. 6.2 nodewords_basic/includes/nodewords_basic.nodewords.tags.inc \nodewords_basic_description_prepare()

Set the meta tag content.

File

nodewords_basic/includes/nodewords_basic.nodewords.tags.inc, line 127
Meta tags definition file.

Code

function nodewords_basic_description_prepare(&$tags, $content, $options) {
  if (!empty($content['value'])) {
    $tags['description'] = nodewords_replace_tokens($content['value'], $options);
  }
}