42 lines
988 B
PHP
42 lines
988 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016-2024 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-FileCopyrightText: 2015 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
namespace OCA\LogReader\Controller;
|
|
|
|
use OCA\LogReader\Service\SettingsService;
|
|
use OCP\AppFramework\Controller;
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
use OCP\AppFramework\Services\IInitialState;
|
|
use OCP\Util;
|
|
|
|
/**
|
|
* Class PageController
|
|
*
|
|
* @package OCA\LogReader\Controller
|
|
*/
|
|
class PageController extends Controller {
|
|
|
|
public function __construct(
|
|
private IInitialState $initialState,
|
|
private SettingsService $settingsService,
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* @NoCSRFRequired
|
|
*
|
|
* @return TemplateResponse
|
|
*/
|
|
public function index() {
|
|
Util::addScript($this->appName, 'logreader-main');
|
|
Util::addStyle($this->appName, 'logreader-main');
|
|
$this->initialState->provideInitialState('settings', $this->settingsService->getAppSettings());
|
|
|
|
return new TemplateResponse($this->appName, 'index');
|
|
}
|
|
}
|