Files
easystream-main/templates.php
SamiAhmed7777 f0f346deb9
Some checks failed
EasyStream Test Suite / test (pull_request) Has been cancelled
EasyStream Test Suite / code-quality (pull_request) Has been cancelled
EasyStream Test Suite / integration-test (pull_request) Has been cancelled
Sync current dev state
2025-12-15 17:28:21 -08:00

20 lines
501 B
PHP

<?php
/**
* Template Builder - User Entry Point
*
* This page provides access to the template builder system
*/
// Include core configuration
require_once dirname(__FILE__) . '/f_core/config.core.php';
// Check if user is logged in
if (!isset($_SESSION['USER_ID']) || $_SESSION['USER_ID'] <= 0) {
header('Location: /signin?redirect=' . urlencode($_SERVER['REQUEST_URI']));
exit;
}
// Redirect to the template manager
header('Location: /f_modules/m_backend/template_manager.php');
exit;