Skip to content

sevenymedia/php-growl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

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');

About

Send Growl notifications over a network using PHP

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%