vojtech-dobes / nette-goto-panel
提供界面,可在Nette框架应用程序中跳转到任何目的地。
2.0
2013-10-02 16:06 UTC
Requires
- php: >=5.3.2
- nette/nette: 2.0.*
This package is not auto-updated.
Last update: 2024-09-14 12:17:28 UTC
README
提供界面,可在应用程序中跳转到任何目的地。
安装
- 获取源代码
- 将
GotoPanel.php
移动到您的libs
目录。 - 将
"Clevisaci/GotoPanel": "*"
添加到您的composer.json
。
- 将
- 将
GotoPanel
注册为组件(例如在BasePresenter
中)。 - 在
startup()
中强制初始化。
protected function startup() { parent::startup(); $this['gotoPanel']; } protected function createComponentGotoPanel() { return new GotoPanel; }