You are here

function _nodewords_init_tags_data in Nodewords: D6 Meta Tags 6.2

Same name and namespace in other branches
  1. 6.3 nodewords.module \_nodewords_init_tags_data()
1 call to _nodewords_init_tags_data()
nodewords_save_tags in ./nodewords.module
Update or insert tags in the table.

File

./nodewords.module, line 845
Implement an API that other modules can use to add meta tags.

Code

function _nodewords_init_tags_data($name, $options) {
  $row = new stdClass();
  $row->type = $options['type'];
  $row->id = $options['id'];
  $row->name = $name;
  return $row;
}