I came across a very cool iPhone application the other day called Prowl. Essentially, it’s a hub through which you can send push notifcations, and they provide an excellent API.
I took the opportunity to write a simple CakePHP component for sending push notifcations using Prowl.
Usage Examples
In your controller:
// This is the API key registered to the users Prowl Login
$this->Prowl->_defaults['apikey'] = 'Your API Key Here';
$this->Prowl->_defaults['application'] = 'Your Application';
$this->Prowl->add('This is a simple push notifcation');
$this->Prowl->add('This is a longer push notification', array(
'description' => 'This is the description for the push notification'
));
Get It
Downloadprowl.php4KB
