* * Program Timer Script - Kontrolliert zyklisch, ob auf Grund der Programm Einstellung eine Änderung der * Beschattung erforderlich ist */ include_once "IPSShadowing.inc.php"; $_IPS['ABORT_ON_ERROR'] = true; $profileManager = new IPSShadowing_ProfileManager(); $profileManager->UpdateProfileInfos(); $categoryIdDevices = IPSUtil_ObjectIDByPath('Program.IPSLibrary.data.modules.IPSShadowing.Devices'); $deviceIds = IPS_GetChildrenIds($categoryIdDevices); foreach($deviceIds as $deviceId) { $device = new IPSShadowing_Device($deviceId); $device->CheckPrograms($profileManager); } /** @}*/ ?>