Exemplo n.º 1
0
/**
 * Send an Mobile notification
 *
 * @param string $hook   Hook name
 * @param string $type   Hook type
 * @param bool   $result Has anyone sent a message yet?
 * @param array  $params Hook parameters
 * @return bool
 * @access private
 */
function mobile_notifications_send($hook, $type, $result, $params)
{
    // Sender and Recipient Information to get name and username
    $message = $params['notification'];
    $sender = $message->getSender();
    $recipient = $message->getRecipient();
    //Send GCN to Mobile
    include_once elgg_get_plugins_path() . 'web_services/lib/GCM.php';
    $gcm = new GCM();
    $result = $gcm->setup_message($sender->name, $sender->username, $recipient->name, $recipient->username, $message->subject, $message->body);
    if ($result) {
        error_log("Message sent successfully");
    } else {
        error_log("Failed to send message");
    }
}