Example #1
0
<?php

header('Content-Type: application/json');
require_once 'init.php';
$userId = $app->user->uid;
$result = array('status' => false);
if (isset($_GET['list'])) {
    $result['status'] = true;
    $result['items'] = $app->notifications->getPms();
} else {
    if (isset($_GET['view']) && isset($_GET['id'])) {
        $result['status'] = true;
        $result['items'] = $app->notifications->getPm($_GET['id']);
    } else {
        if (isset($_GET['send'])) {
            if (isset($_POST['to']) && isset($_POST['body'])) {
                $messages = new messages($app);
                $result['status'] = $messages->newMessage($_POST['to'], $_POST['body']);
            } else {
                if (isset($_POST['pm_id']) && isset($_POST['body'])) {
                    $messages = new messages($app);
                    $result['status'] = $messages->newMessage(null, $_POST['body'], $_POST['pm_id']);
                    $result['message'] = $app->parse($_POST['body']);
                }
            }
        }
    }
}
$json = json_encode($result);
// Remove null entries
echo preg_replace('/,\\s*"[^"]+":null|"[^"]+":null,?/', '', $json);
Example #2
0
<?php

define("_SIDEBAR", false);
$custom_css = array('inbox.scss', 'confirm.css');
$custom_js = array('jquery.confirm.js', 'inbox.js');
$page_title = 'Inbox';
require_once 'init.php';
$messages = new messages($app);
if (isset($_GET['delete'])) {
    $status = $messages->deleteConvo($_GET['delete']);
}
if (isset($_POST['body']) && isset($_GET['view'])) {
    $result = $messages->newMessage(null, $_POST['body'], $_GET['view']);
    if ($result) {
        $uri = $_GET['view'] . "?sent";
        header('Location: ' . $uri);
        die;
    } else {
        $error = $messages->getError();
    }
}
if (isset($_POST['body']) && isset($_POST['to']) && isset($_GET['compose'])) {
    $result = $messages->newMessage($_POST['to'], $_POST['body']);
    if ($result) {
        $uri = $messages->getLastInserted();
        header('Location: ' . $uri);
        die;
    } else {
        $error = $messages->getError();
    }
}