コード例 #1
0
 * are proprietary to SocialApparatus and its suppliers and may be covered by U.S. and Foreign 
 * Patents, patents in process, and are protected by trade secret or copyright law. 
 * 
 * Dissemination of this information or reproduction of this material is strictly forbidden 
 * unless prior written permission is obtained from SocialApparatus.
 * 
 * Contact Shane Barron admin@socia.us for more information.
 */
namespace SocialApparatus;

denyDirect();
$guid = Vars::get("guid");
if (!$guid) {
    $guid = getInput("guid");
}
$count = LikesPlugin::countLikes($guid);
$likers = LikesPlugin::likers($guid);
echo "<div class='likes like_" . $guid . " pull-right'>";
$s = $count != 1 ? "s" : "";
$likers_link = "<a title='{$likers}' data-toggle='tooltip'>{$count} Like{$s}</a>";
if (LikesPlugin::loggedInUserHasLiked($guid)) {
    echo <<<HTML
    <a href = 'javascript:likes.remove({$guid})' class = 'btn btn-xs btn-success disabled'><i class = 'fa fa fa-thumbs-up'></i></a>
    <small>{$likers_link}</small>
HTML;
} else {
    echo <<<HTML
    <a href = 'javascript:likes.add({$guid})' class = 'btn btn-xs btn-success'><i class = 'fa fa-thumbs-up'></i></a>
    <small>{$likers_link}</small>
HTML;
}