vojtech-dobes / nette-goto-panel
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.*
This package is not auto-updated.
Last update: 2024-10-26 12:54:58 UTC
README
Provides interface to go to any destination within app.
Installation
- Get the source code:
- Move
GotoPanel.php
to your libs directory. - Add
"Clevisaci/GotoPanel": "*"
to yourcomposer.json
.
- Move
- Register
GotoPanel
as component (e.g. inBasePresenter
). - Force initialization in
startup()
.
protected function startup() { parent::startup(); $this['gotoPanel']; } protected function createComponentGotoPanel() { return new GotoPanel; }