<?php

namespace IPS\{app}\extensions\core\Loader;

use IPS\Extensions\LoaderAbstract;
use IPS\Http\Url;
use function defined;

/* To prevent PHP errors (extending class does not exist) revealing path */
if ( !defined( '\IPS\SUITE_UNIQUE_KEY' ) )
{
	header( ( $_SERVER['SERVER_PROTOCOL'] ?? 'HTTP/1.0' ) . ' 403 Forbidden' );
	exit;
}

/**
 * @brief	Loader extension: {class}
 * IMPORTANT: Most methods in this extension are NOT called
 * on Database Pages (@see \IPS\cms\Databases\Dispatcher)
 * The above dispatcher class bypasses CSS and JS intentionally.
 * Redirects can be handled in a Raw HTML block for now.
 */
class {class} extends LoaderAbstract
{

}