vers. 2.1.1

This commit is contained in:
2026-01-28 19:05:44 +01:00
parent 719d750a7a
commit 52e40799d6
35 changed files with 14523 additions and 14012 deletions

View File

@@ -1,31 +1,33 @@
<?php
/*
# RPIGROUP PLAY - WebApp powered by A.S.V. Studios APPS for RPIGroup
# ---------------------------------------------------------------
# Author: A.S.V. Studios APPS
# Website: https://app.rpigroup.net
# ---------------------------------------------------------------
# All Rights is reserved by A.S.V. Studios APPS.
#
# Version app: VEDERE IN CHANGELOG.XML
*/
# Import config file
include_once './config/config.php';
# Import head file
include_once './static/head.php';
# Load Pages
if(!$show_app):
include_once './pages/desktop.php';
else:
include_once './pages/mobile.php';
endif;
# Import footer file
<?php
/*
# RPIGROUP PLAY - WebApp powered by A.S.V. Studios APPS for RPIGroup
# ---------------------------------------------------------------
# Author: A.S.V. Studios APPS
# Website: https://app.rpigroup.net
# ---------------------------------------------------------------
# All Rights is reserved by A.S.V. Studios APPS.
#
# Version app: VEDERE IN CHANGELOG.XML
*/
header('Content-Type: text/html; charset=UTF-8');
# Import config file
include_once './config/config.php';
# Import head file
include_once './static/head.php';
# Load Pages
if(!$show_app):
include_once './pages/desktop.php';
else:
include_once './pages/mobile.php';
endif;
# Import footer file
include_once './static/footer.php';