like.tpl.php in Like & Dislike 7
File
templates/like.tpl.php
View source
<?php
?>
<div class="like-and-dislike-container like type-<?php
print $entity_type;
?>" id="like-container-<?php
print $entity_type;
?>-<?php
print $entity_id;
?>">
<a title="Like"
data-entity-id="<?php
print $entity_id;
?>"
data-entity-type="<?php
print $entity_type;
?>"
class="<?php
if ($likestatus == 1) {
print ' disable-status';
}
?>">
Like
</a>
<span class="count"><?php
print $likes;
?></span>
<span style="display:none" class="throbber">Loading...</span>
</div>