aerialls / Growl

A simple PHP5.3 library for sending Growl notifications using GNTP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Growl notifier Build Status

This library is a simple Growl notifier for PHP5.3

Installation via Composer

The recommended way to install it is through composer.

{
    "require": {
        "madalynn/growl": "dev-master"
    }
}

Example

<?php

$growl = new Madalynn\Growl\Growl('My application');

// Create a new notification type for the application
$notification = new Madalynn\Growl\Notification\Type('Foobar');

$notification->setIcon('http://foobar.com/myicon.png');
$notification->setDisplayName('Foobar notification type');

$growl->addNotificationType($notification);

// Create a new message for this type
$message = $notification->create('Title', 'Message');

$message->setSticky(true);
$message->setPriority(Madalynn\Growl\Notification\Message::PRIORITY_MODERATE);

// Send the message
$growl->sendNotify($message);

About

A simple PHP5.3 library for sending Growl notifications using GNTP

License:MIT License


Languages

Language:PHP 100.0%