View file src/addons/ThemeHouse/Core/Branding.php

File size: 305B
<?php
$curDir = dirname(__FILE__);

$version = 0;
if ($handle = opendir($curDir . '/Branding')) {
    while (($entry = readdir($handle)) !== false) {
        if (intval($entry) > $version) {
            $version = intval($entry);
        }
    }
}

require_once $curDir . '/Branding/' . $version . '.php';