first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?php
/**
* @package solo
* @copyright Copyright (c)2014-2019 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU GPL version 3 or later
*/
defined('_AKEEBA') or die();
/** @var \Solo\View\Main\Html $this */
/** @var \Solo\Model\Main $model */
$container = $this->getContainer();
$filePath = isset($filePath['changelogPath']) ? $filePath['changelogPath'] : null;
if (empty($filePath))
{
$filePath = APATH_BASE . '/CHANGELOG.php';
}
$model = $this->getModel();
echo $model->coloriseChangelog($filePath, true);