Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 1.3 KB

README.markdown

File metadata and controls

25 lines (17 loc) · 1.3 KB

PHP-Growl is an implementation of the Growl notification system written in PHP.

As a proof of concept example, I've written a Mint Pepper plugin that notifies you whenever certain events (like new referrals, unique visitors, etc) happen on your website. It's a slick way to stay on top of who is visiting your site. You can download Growl Pepper here.

<?php

    $connection = array('address' => '127.0.0.1', 'password' => 'password');
    $growl = new Growl();

    // Adding and registering your notifications with Growl
    // only needs to be done once per computer. Growl will
    // remember your app after this.
    $growl->addNotification('Notification Name');
    $growl->addNotification('Another Notification');
    $growl->register($connection);

    // Send a notification
    $growl->notify($connection, 'Notification Name', 'Some Title', 'Some message to display');

    // Send a second notification
    $growl->notify($connection, 'Another Notification', 'Another Title', 'Something useful I hope.');

To configure Growl to use fsock instead of socket functions you can define a constant:

define('GROWL_SOCK', 'fsock');