forked from Alex/Pterodactyl-Panel
cb4f8efbe6
Added Google Analytics to latest dev branch
44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\ViewComposers;
|
|
|
|
use Illuminate\View\View;
|
|
use Pterodactyl\Services\Helpers\AssetHashService;
|
|
|
|
class AssetComposer
|
|
{
|
|
/**
|
|
* @var \Pterodactyl\Services\Helpers\AssetHashService
|
|
*/
|
|
private $assetHashService;
|
|
|
|
/**
|
|
* AssetComposer constructor.
|
|
*
|
|
* @param \Pterodactyl\Services\Helpers\AssetHashService $assetHashService
|
|
*/
|
|
public function __construct(AssetHashService $assetHashService)
|
|
{
|
|
$this->assetHashService = $assetHashService;
|
|
}
|
|
|
|
/**
|
|
* Provide access to the asset service in the views.
|
|
*
|
|
* @param \Illuminate\View\View $view
|
|
*/
|
|
public function compose(View $view)
|
|
{
|
|
$view->with('asset', $this->assetHashService);
|
|
$view->with('siteConfiguration', [
|
|
'name' => config('app.name') ?? 'Pterodactyl',
|
|
'locale' => config('app.locale') ?? 'en',
|
|
'recaptcha' => [
|
|
'enabled' => config('recaptcha.enabled', false),
|
|
'siteKey' => config('recaptcha.website_key') ?? '',
|
|
],
|
|
'analytics' => config('app.analytics') ?? '',
|
|
]);
|
|
}
|
|
}
|