You are here

function likebtn_votingapi_metadata_alter in Like Button 8.2

Same name and namespace in other branches
  1. 7 likebtn.module \likebtn_votingapi_metadata_alter()

Implements hook_votingapi_metadata_alter().

File

./likebtn.module, line 1744
Implements the LikeBtn module.

Code

function likebtn_votingapi_metadata_alter(&$data) {

  // Voting API tag name.
  $data['tags'][LIKEBTN_VOTING_TAG] = array(
    'name' => LIKEBTN_VOTING_TAG,
    'description' => 'LikeBtn',
    'module' => 'likebtn',
  );
}