void addGrowlNotifications(
array
$notifications)
|
|
Adds notifications supported by this application
Expected array format is:
array('notification name' => array('option name' => 'option value')) At the moment, only option name 'enabled' is supported. Example:
$notifications = array('Test Notification' => array('enabled' => true));
Parameters:
array &getGrowlNotifications(
)
|
|
Returns the notifications accepted by Growl for this application
Expected array format is:
array('notification name' => array('option name' => 'option value')) At the moment, only option name 'enabled' is supported. Example:
$notifications = array('Test Notification' => array('enabled' => true));
return $notifications;