コード例 #1
0
ファイル: add.php プロジェクト: duanhv/mdg-social
//check to see if the user has already liked the item
if (elgg_annotation_exists($entity_guid, 'likes')) {
    returnAjaxResult(false, elgg_echo("likes:alreadyliked"), $entity);
    exit;
}
// Let's see if we can get an entity with the specified GUID
$entity = get_entity($entity_guid);
if (!$entity) {
    returnAjaxResult(false, elgg_echo("likes:notfound"), $entity);
    exit;
}
// limit likes through a plugin hook (to prevent liking your own content for example)
if (!$entity->canAnnotate(0, 'likes')) {
    // plugins should register the error message to explain why liking isn't allowed
    returnAjaxResult(false);
    exit;
}
$user = elgg_get_logged_in_user_entity();
$annotation = create_annotation($entity->guid, 'likes', "likes", "", $user->guid, $entity->access_id);
// tell user annotation didn't work if that is the case
if (!$annotation) {
    returnAjaxResult(false, elgg_echo("likes:failure"), $entity);
    exit;
}
// notify if poster wasn't owner
if ($entity->owner_guid != $user->guid) {
    likes_notify_user($entity->getOwnerEntity(), $user, $entity);
}
//system_message(elgg_echo("likes:likes"));
returnAjaxResult(true, elgg_echo("likes:likes"), $entity);
exit;
コード例 #2
0
ファイル: methods.php プロジェクト: appstaat/pleio_api
function pleio_api_like_entity($guid)
{
    $user = elgg_get_logged_in_user_entity();
    $user_id = $user !== false ? $user->guid : 0;
    $guid = (int) $guid;
    //check to see if the user has already liked the item
    if (elgg_annotation_exists($guid, 'likes')) {
        return new ErrorResult(elgg_echo("likes:alreadyliked"));
    }
    // Let's see if we can get an entity with the specified GUID
    $entity = get_entity($guid);
    if (!$entity) {
        return new ErrorResult(elgg_echo("likes:notfound"));
    }
    // limit likes through a plugin hook (to prevent liking your own content for example)
    if (!$entity->canAnnotate($user_id, 'likes')) {
        return new ErrorResult(elgg_echo("likes:failure"));
    }
    $annotation = create_annotation($entity->guid, 'likes', "likes", "", $user_id, $entity->access_id);
    // tell user annotation didn't work if that is the case
    if (!$annotation) {
        return new ErrorResult(elgg_echo("likes:failure"));
    }
    // notify if poster wasn't owner
    if ($entity->owner_guid != $user->guid) {
        likes_notify_user($entity->getOwnerEntity(), $user, $entity);
    }
    return new SuccessResult(elgg_echo("likes:likes"));
}