Commit vers. 2.1.0
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
<?php header('Content-Type: text/html; charset=UTF-8'); ?>
|
||||
|
||||
<h1 class="titlePage">Pagina non trovata</h1>
|
||||
|
||||
<p class="text-center">La pagina che hai provato a cercare non esiste o non è disponibile.</p>
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
<?php header('Content-Type: text/html; charset=UTF-8'); ?>
|
||||
|
||||
<h1 class="titlePage">Come funziona RPIGroup Play?</h1>
|
||||
|
||||
<hr>
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
<?php header('Content-Type: text/html; charset=UTF-8'); ?>
|
||||
|
||||
<h1 class="titlePage">Aggiungi la tua radio</h1>
|
||||
|
||||
<hr>
|
||||
|
||||
@@ -1,13 +1,31 @@
|
||||
<?php header('Content-Type: text/html; charset=UTF-8'); ?>
|
||||
|
||||
<h1 class="titlePage">Changelog</h1>
|
||||
<p class="subtitlePage">Visualizza tutti gli ricevuti</p>
|
||||
<p class="subtitlePage">Visualizza tutti gli aggiornamenti ricevuti</p>
|
||||
|
||||
<?php
|
||||
foreach($changelog->version as $version){
|
||||
echo "<hr>";
|
||||
echo "<p class=\"changelogTitle\">Versione ".$version->number."</p>";
|
||||
foreach($version->logs->log as $log_print){
|
||||
echo "<p class=\"changelogList\">• ".$log_print."</p>";
|
||||
// Verifica che $changelog sia stato caricato correttamente in getStation.inc.php
|
||||
if (isset($changelog) && $changelog !== false && isset($changelog->version)) {
|
||||
// Itera attraverso le versioni
|
||||
foreach($changelog->version as $version) {
|
||||
echo "<hr>";
|
||||
echo "<p class=\"changelogTitle\">Versione " . htmlspecialchars((string)$version->number) . "</p>";
|
||||
|
||||
// Verifica che esistano i log prima di iterare
|
||||
if (isset($version->logs) && isset($version->logs->log)) {
|
||||
foreach($version->logs->log as $log_print) {
|
||||
echo "<p class=\"changelogList\">• " . htmlspecialchars((string)$log_print) . "</p>";
|
||||
}
|
||||
} else {
|
||||
echo "<p class=\"changelogList\" style=\"font-style: italic; color: #999;\">Nessun dettaglio disponibile per questa versione.</p>";
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// Messaggio di errore se il changelog non è disponibile
|
||||
echo "<hr>";
|
||||
echo "<div style=\"padding: 20px; background: #fff3cd; border: 1px solid #ffc107; border-radius: 5px; margin: 20px 0;\">";
|
||||
echo "<p style=\"margin: 0; color: #856404;\"><strong>Attenzione:</strong> Impossibile caricare il changelog. Il file potrebbe essere mancante o corrotto.</p>";
|
||||
echo "</div>";
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
<?php header('Content-Type: text/html; charset=UTF-8'); ?>
|
||||
|
||||
<!-- <div class="content-page">
|
||||
<h2>Contatti</h2>
|
||||
<div class="content-box">
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
<?php header('Content-Type: text/html; charset=UTF-8'); ?>
|
||||
|
||||
<h1 class="titlePage">Diritti d'Autore</h1>
|
||||
<p class="subtitlePage">Come funziona e chi lo gestisce</p>
|
||||
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
<?php header('Content-Type: text/html; charset=UTF-8'); ?>
|
||||
|
||||
<h1 class="titlePage">Benvenuto</h1>
|
||||
<p class="subtitlePage">nella nuova RPIGroup Play</p>
|
||||
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
<?php header('Content-Type: text/html; charset=UTF-8'); ?>
|
||||
|
||||
<h1 class="titlePage">Policy Privacy</h1>
|
||||
<p class="subtitlePage">Ultimo aggiornamento: 17/11/2025</p>
|
||||
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
<?php header('Content-Type: text/html; charset=UTF-8'); ?>
|
||||
|
||||
<?php
|
||||
// views/home.php - Vista della pagina principale
|
||||
$stations = loadRadioStations();
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
<?php header('Content-Type: text/html; charset=UTF-8'); ?>
|
||||
|
||||
<h1 class="titlePage">Termini & Condizioni</h1>
|
||||
<p class="subtitlePage">Ultimo aggiornamento: 17/11/2025</p>
|
||||
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
<?php header('Content-Type: text/html; charset=UTF-8'); ?>
|
||||
|
||||
<h1 class="titlePage">TV</h1>
|
||||
<p class="subtitlePage">Guarda in streaming <b>RC105 TV</b></p>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user