ON AIR ANZEIGE


Es gibt 6 Antworten in diesem Thema. Der letzte Beitrag () ist von Bimboli.

  • Hallo zusammen


    Erstmal riesen Dank an die Hilfe hier , aber nun zu meiner Frage ?


    Gibt es eine Möglichkeit die on air anzeige zu wechseln oder dafür eine andere Datei anzeigen zu lassen wie ein Gif oder ein on air png.


    Ich finde da leider nix , ich hoffe mir kann einer dabei helfen mit einer kleinen Beschreibung wo und wie ich das am besten mache.

    Danke mfg Bimboli


  • Ich habe mal etwas rumgebastelt . In der Datei : system --> core --> start.php

    Code
    1. $onair = time() > strtotime($datum.' '.$row['vonf'].':00') && time() < strtotime($datum.' '.$row['bisf'].':00') ? '<button type="button" class="btn btn-danger" disabled>ON AIR</button>' : NULL;
    2. $onair1 = time() > strtotime($datum.' '.$row['vonf'].':00') && time() < strtotime($datum.' '.$row['bisf'].':00') ? '<button type="button" class="btn btn-danger btn-sm" disabled>ON AIR</button>' : NULL;

    durch :

    Code
    1. $onair = time() > strtotime($datum.' '.$row['vonf'].':00') && time() < strtotime($datum.' '.$row['bisf'].':00') ? '<img src="https://Deine URL/sendeplan/img/modionstream.gif" width="100" height="40" />' : NULL;
    2. $onair1 = time() > strtotime($datum.' '.$row['vonf'].':00') && time() < strtotime($datum.' '.$row['bisf'].':00') ? 'Quellcode<img src="https://Deine URL/sendeplan/img/modionstream.gif" width="50" height="20" />' : NULL;

    ersetzt. Das animierte gif ist auch im Sendeplan zu sehen, das problem ist nun noch die größe. Vielleicht hat da jemand noch einen Einfall wie man das berwerkstelligen kann.


  • du öffnest dein FTP Programm..

    Sendeplan --> System --> Core --> Start.php

    Diese Start.php öffnest Du und suchst Zeile 60 und 61

    Code
    1. $onair = time() > strtotime($datum.' '.$row['vonf'].':00') && time() < strtotime($datum.' '.$row['bisf'].':00') ? '<button type="button" class="btn btn-danger" disabled>ON AIR</button>' : NULL;
    2. $onair1 = time() > strtotime($datum.' '.$row['vonf'].':00') && time() < strtotime($datum.' '.$row['bisf'].':00') ? '<button type="button" class="btn btn-danger btn-sm" disabled>ON AIR</button>' : NULL;

    Diese beiden zeilen ersetzt Du mit diesen Zeilen:


    Code
    1.  $onair = time() > strtotime($datum.' '.$row['vonf'].':00') && time() < strtotime($datum.' '.$row['bisf'].':00') ? '<img src="https://Deine URL/sendeplan/img/modionstream.gif" width="100" height="40" />' : NULL;
    2.  $onair1 = time() > strtotime($datum.' '.$row['vonf'].':00') && time() < strtotime($datum.' '.$row['bisf'].':00') ? 'Quellcode<img src="https://Deine URL/sendeplan/img/modionstream.gif" width="50" height="20" />' : NULL;

    Danke an DrComputer für die hilfe.


    Das mit der größe hab ich auch hinbekommen.

    • Gäste Informationen

    Gefällt Dir der Thread? Möchtest du was dazu schreiben?

    Dann logge Dich bitte mit deinem Benutzerkonto ein.
    Du besitzt noch kein Benutzerkonto? Dann registriere Dich jetzt kostenlos! Nach der Registrierung kannst du das Forum uneingeschränkt nutzen.