webchemistry / widgets
小部件
2.0
2017-05-27 18:17 UTC
Requires
- php: >=7.1
- latte/latte: ^2.4 || ^3.0
- nette/application: ^2.4 || ^3.0
Requires (Dev)
- phpstan/phpstan: ^0.7
This package is auto-updated.
Last update: 2024-09-08 22:26:47 UTC
README
安装
config.neon
extensions: widgets: WebChemistry\Widgets\DI\WidgetsExtension
注册
config.neon
widgets: firstWidget: FirstWidget secondWidget: # With multiplier multiplier: yes class: SecondWidget thirdWidget: @third # As service services: third: ThirdWidget
使用
演示者
class BasePresenter extends Nette\Application\UI\Presenter { use WebChemistry\Widgets\Traits\TPresenter; }
模板
{widget firstWidget} {widget secondWidget-1} {widget secondWidget-2} {widget thirdWidget}