canAnnotate(0, 'likes')) { // plugins should register the error message to explain why liking isn't allowed forward(REFERER); } $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) { register_error(elgg_echo("likes:failure")); forward(REFERER); } // 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")); // Forward back to the page where the user 'liked' the object forward(REFERER);