IPS Push Notifications wie bei Prowl

Hallo zusammen,

kann mir mal jemand helfen, ich würde gerne die gleiche Meldung bekommen über IPS Push Notifications wie ich sie damals auch über Prowl bekommen hatte, bin mir nicht sicher ob dies überhaupt geht aber schön wäre es.

Hier der Stript von Prowl:


include('ProwlPHP.php');

$parentID = IPS_GetObject($IPS_VARIABLE);
$parentID = $parentID['ParentID'];
$parentID = IPS_GetObject($parentID);
//echo $parentID['ObjectName'];
if($IPS_VALUE) { $status = "Geöffnet"; } else {$status = "Geschlossen"; } // in "" Statusmeldung
$prowl = new Prowl('xxxxxxxx');  // hier dein Magic-Key rein
$prowl->push(array(
 'application'=>'ACHTUNG', // im '' Text 1
 'event'=>'', // im '' Text 2
 'description'=>utf8_encode("".$parentID['ObjectName']." ist ".$status),
 'priority'=>0
));