Extention in openElement) // Fix lowercase keys in $_SERVER array - needed mostly for OE local webserver: if (!isset($_SERVER['PHP_SELF']) && isset($_SERVER['php_self'])) { foreach($_SERVER as $key=>$value) { $_SERVER[strtoupper($key)] = $value; } } // ATTENTION: the following line DOES NOT work if script is saved in an external file; use one of inside-the-page types (e.g. StartDocument)! if (!isset($GLOBALS['OEConfEG37b74918'])) { include preg_replace('/(\\.[a-z-]+)?\\.php$/', '(var).php', __FILE__); } // if not done yet, include page(var).php - properties' values are stored there $allElements = (empty($GLOBALS['OEConfEG37b74918'])) ? null : $GLOBALS['OEConfEG37b74918']; if ($allElements && ($allElements = json_decode($allElements, false))) { foreach($allElements as $ID=>$properties) { //------------------------------------------------------------ // // VOTRE CODE ICI // //------------------------------------------------------------ date_default_timezone_set("Europe/Paris"); //Aujourd'hui $now = time(); //------------------------------------ // HORAIRES //------------------------------------ $jours = array("lundi","mardi","mercredi","jeudi","vendredi","samedi","dimanche"); $jourFr = $jours[date("N")-1]; $horaire = array( (isset($properties->Open_Lun) ? $properties->Open_Lun : null)."/".(isset($properties->Close_Lun) ? $properties->Close_Lun : null)."/".(isset($properties->Start_Lun) ? $properties->Start_Lun : null)."/".(isset($properties->End_Lun) ? $properties->End_Lun : null), //lun (isset($properties->Open_Mar) ? $properties->Open_Mar : null)."/".(isset($properties->Close_Mar) ? $properties->Close_Mar : null)."/".(isset($properties->Start_Mar) ? $properties->Start_Mar : null)."/".(isset($properties->End_Mar) ? $properties->End_Mar : null), //mar (isset($properties->Open_Mer) ? $properties->Open_Mer : null)."/".(isset($properties->Close_Mer) ? $properties->Close_Mer : null)."/".(isset($properties->Start_Mer) ? $properties->Start_Mer : null)."/".(isset($properties->End_Mer) ? $properties->End_Mer : null), //mer (isset($properties->Open_Jeu) ? $properties->Open_Jeu : null)."/".(isset($properties->Close_Jeu) ? $properties->Close_Jeu : null)."/".(isset($properties->Start_Jeu) ? $properties->Start_Jeu : null)."/".(isset($properties->End_Jeu) ? $properties->End_Jeu : null), //jeu (isset($properties->Open_Ven) ? $properties->Open_Ven : null)."/".(isset($properties->Close_Ven) ? $properties->Close_Ven : null)."/".(isset($properties->Start_Ven) ? $properties->Start_Ven : null)."/".(isset($properties->End_Ven) ? $properties->End_Ven : null), //ven (isset($properties->Open_Sam) ? $properties->Open_Sam : null)."/".(isset($properties->Close_Sam) ? $properties->Close_Sam : null)."/".(isset($properties->Start_Sam) ? $properties->Start_Sam : null)."/".(isset($properties->End_Sam) ? $properties->End_Sam : null), //sam (isset($properties->Open_Dim) ? $properties->Open_Dim : null)."/".(isset($properties->Close_Dim) ? $properties->Close_Dim : null)."/".(isset($properties->Start_Dim) ? $properties->Start_Dim : null)."/".(isset($properties->End_Dim) ? $properties->End_Dim : null) //dim ); //------------------------------------ // TRAITEMENT //------------------------------------ /** * * $message = autre * $message1 = ouverture * $message2 = fermeture * */ $horaire = explode("/",$horaire[date("N")-1]); if(!empty($horaire[0])){ #si nous sommes pendant les heures d'ouverture $open = strtotime($horaire[0]); $close= strtotime($horaire[1]); if(($now >= $open)&&($now <= $close)){ #si nous sommes pendant la pause $debut_pause = strtotime($horaire[2]); $fin_pause = strtotime($horaire[3]); if(($now >= $debut_pause)&&($now <= $fin_pause)){ $message2 = (isset($properties->Message2) ? $properties->Message2 : null); }else{ $message1 = (isset($properties->Message1) ? $properties->Message1 : null); } }else{ $message2 = (isset($properties->Message2) ? $properties->Message2 : null); } }else{ $message = "Fermé le $jourFr"; } //------------------------------------------------------------ // // FIN DU CODE // //------------------------------------------------------------ } } ?>