36 lines
972 B
PHP
36 lines
972 B
PHP
<?php
|
|
|
|
/*
|
|
# RPIGROUP PLAY - WebApp powered by A.S.V. Studios APPS for RPIGroup
|
|
# ---------------------------------------------------------------
|
|
# Author: A.S.V. Studios APPS
|
|
# Website: https://app.rpigroup.net
|
|
# Copyright (c) 2025-202 A.S.V. Studios APPS
|
|
# ---------------------------------------------------------------
|
|
# Questa app è disponibile all'interno della repository pubblica di RPIGroup Play.
|
|
# ---------------------------------------------------------------
|
|
# 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'; |