83 lines
3.0 KiB
Markdown
83 lines
3.0 KiB
Markdown
|
# Using Dependency Injection
|
||
|
|
||
|
Here's an excerpt from Lean's definition file 'template.php' which also loads Picea\Ui.
|
||
|
|
||
|
It also insert `Tell` inside the LanguageHandler which handles the `{% _ 'relative.lang.key' %}` and `{% lang 'my.full.lang.key' %}`.
|
||
|
|
||
|
```php
|
||
|
use function DI\autowire, DI\create, DI\get;
|
||
|
|
||
|
use Zend\Diactoros\Response\HtmlResponse;
|
||
|
|
||
|
use Picea\{ Picea, Caching\Cache, Caching\Opcache, Compiler, Compiler\Context, Compiler\BaseContext, FileFetcher, Language\DefaultRegistrations, Method\Request };
|
||
|
use Picea\Extension\{ LanguageHandler, LanguageExtension, TitleExtension, MoneyExtension, UrlExtension };
|
||
|
use Picea\Ui\{ Method, Ui };
|
||
|
|
||
|
return [
|
||
|
Picea::class => function($c) {
|
||
|
return new Picea($c->get(Context::class), $c->get(Cache::class), $c->get(Compiler::class), null, $c->get(FileFetcher::class), null, getenv("DEBUG"));
|
||
|
},
|
||
|
|
||
|
Context::class => function($c) {
|
||
|
return new BaseContext( $c->get(Lean\Lean::class)->getPiceaContext() );
|
||
|
},
|
||
|
|
||
|
Compiler::class => function($c) {
|
||
|
return new Compiler(new class(array_merge([
|
||
|
$c->get(LanguageExtension::class),
|
||
|
$c->get(TitleExtension::class),
|
||
|
$c->get(MoneyExtension::class),
|
||
|
$c->get(UrlExtension::class),
|
||
|
$c->get(Method\Form::class),
|
||
|
$c->get(Method\Pagination::class),
|
||
|
$c->get(Request::class),
|
||
|
], class_exists(\Taxus\Picea\Extension::class) ? [ $c->get(\Taxus\Picea\Extension::class) ] : [],
|
||
|
array_map(fn($class) => $c->get($class), $c->get(Lean\Lean::class)->getPiceaExtensions() ))) extends DefaultRegistrations {
|
||
|
|
||
|
public function registerAll(Compiler $compiler) : void
|
||
|
{
|
||
|
parent::registerAll($compiler);
|
||
|
( new Ui() )->registerFormExtension($compiler);
|
||
|
}
|
||
|
|
||
|
});
|
||
|
},
|
||
|
|
||
|
Request::class => autowire(Request::class),
|
||
|
|
||
|
Method\Form::class => autowire(Method\Form::class),
|
||
|
|
||
|
Method\Pagination::class => autowire(Method\Pagination::class),
|
||
|
|
||
|
LanguageExtension::class => create(LanguageExtension::class)->constructor(get(LanguageHandler::class)),
|
||
|
|
||
|
LanguageHandler::class => function($c) {
|
||
|
return new class( $c->get(Tell\I18n::class) ) implements LanguageHandler {
|
||
|
public Tell\I18n $tell;
|
||
|
|
||
|
public function __construct(Tell\I18n $tell) {
|
||
|
$this->tell = $tell;
|
||
|
}
|
||
|
|
||
|
public function languageFromKey(string $key, array $variables = []) : array|string
|
||
|
{
|
||
|
return $this->tell->fromKey($key, $variables) ?: "";
|
||
|
}
|
||
|
};
|
||
|
},
|
||
|
|
||
|
TitleExtension::class => autowire(TitleExtension::class),
|
||
|
|
||
|
MoneyExtension::class => autowire(MoneyExtension::class),
|
||
|
|
||
|
UrlExtension::class => create(UrlExtension::class)->constructor(get(Context::class), getenv("URL_BASE"), get('git.commit')),
|
||
|
|
||
|
Cache::class => create(Opcache::class)->constructor(getenv("CACHE_PATH"), get(Context::class)),
|
||
|
|
||
|
FileFetcher::class => function($c) {
|
||
|
return new FileFetcher($c->get(Lean\Lean::class)->getViewPaths());
|
||
|
},
|
||
|
];
|
||
|
```
|
||
|
|