Files
2026-07-01 16:44:17 +03:00

22 lines
538 B
PHP

<?php
namespace Project\Controllers;
class Initialize extends Controller
{
/**
* The codes to run at startup.
* It enters the circuit before all controllers.
* You can change this setting in Config/Starting.php file.
*/
public function main()
{
# The theme is activated.
# Location: Resources/Themes/Default/
Theme::active('pisiV4/');
# The current settings are being configured.
Masterpage::headPage('Assets/head')
->bodyPage('Assets/body');
}
}