public function OpenGraphMeta::load_node_data in Open Graph meta tags 6
Same name and namespace in other branches
- 7 opengraph_meta.common.inc \OpenGraphMeta::load_node_data()
Load FB meta tag data for the given node.
Return value
array('title' => ..., 'summary' => ...)
File
- ./
opengraph_meta.common.inc, line 234
Class
Code
public function load_node_data($node) {
$fields = $this
->get_og_tag_defaults();
$row = $this->data_obj
->load_tags($node->nid);
if (FALSE !== $row) {
foreach ($fields as $field => &$val) {
if (isset($row->{$field})) {
$val = $row->{$field};
}
}
}
return $fields;
}