vojtech-dobes / nette-goto-panel
This package is abandoned and no longer maintained.
No replacement package was suggested.
Provides interface to go to any destination within Nette Framework application.
2.0
2013-10-02 16:06 UTC
Requires
- php: >=5.3.2
- nette/nette: 2.0.*
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is not auto-updated.
Last update: 2026-08-29 21:01:30 UTC
README
Provides interface to go to any destination within app.
Installation
- Get the source code:
- Move
GotoPanel.phpto your libs directory. - Add
"Clevisaci/GotoPanel": "*"to yourcomposer.json.
- Move
- Register
GotoPanelas component (e.g. inBasePresenter). - Force initialization in
startup().
protected function startup() { parent::startup(); $this['gotoPanel']; } protected function createComponentGotoPanel() { return new GotoPanel; }