23 lines
391 B
PHP
Executable File
23 lines
391 B
PHP
Executable File
<?php declare(strict_types = 1);
|
|
|
|
namespace App\Modules\Front;
|
|
|
|
use Nette;
|
|
use Vite;
|
|
|
|
|
|
/**
|
|
* Base presenter for all application presenters.
|
|
*/
|
|
abstract class BaseFrontPresenter extends Nette\Application\UI\Presenter
|
|
{
|
|
public function __construct(
|
|
private Vite $vite,
|
|
) {}
|
|
|
|
public function beforeRender(): void
|
|
{
|
|
$this->template->vite = $this->vite;
|
|
}
|
|
}
|