You are here

function addthis_rdf_namespaces in AddThis 7.4

Implements hook_rdf_namespaces().

File

./addthis.module, line 122

Code

function addthis_rdf_namespaces() {
  if (AddThis::getInstance()
    ->isFacebookLikeCountSupportEnabled()) {
    return array(
      'fb' => 'http://www.facebook.com/2008/fbml',
    );
  }
  return array();
}