Beispiel #1
0
<?php

/**
 * For normal users usage of chatrooms
 */
namespace cd;

$session->requireLoggedIn();
switch ($this->owner) {
    case 'like':
        $status = PersonalStatus::get($this->child);
        if (!$status) {
            die('WEEH');
        }
        if (Like::isLiked($status->id, STATUS, $session->id)) {
            die('LIKED');
        }
        Like::set($status->id, STATUS, $session->id);
        redir('u/profile/' . $status->owner);
        break;
    default:
        echo 'No handler for view ' . $this->owner;
}