Files
chaffe-theme/functions.php

17 lines
262 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(): Site
{
global $site;
return $site;
}