Files
chaffe-theme/functions.php
2025-05-05 16:37:15 -07:00

17 lines
256 B
PHP

<?php
# Imports all Composer packages
require __DIR__ . '/vendor/autoload.php';
use ofc\Site;
# Declare a new Site object
$site = new Site();
# Allow the Site object to be accessed in other files
function site()
{
global $site;
return $site;
}