vojtech-dobes/nette-goto-panel

Provides interface to go to any destination within Nette Framework application.

2.0 2013-10-02 16:06 UTC

This package is not auto-updated.

Last update: 2024-04-13 10:19:15 UTC


README

Provides interface to go to any destination within app.

Installation

  1. Get the source code:
    • Move GotoPanel.php to your libs directory.
    • Add "Clevisaci/GotoPanel": "*" to your composer.json.
  2. Register GotoPanel as component (e.g. in BasePresenter).
  3. Force initialization in startup().
protected function startup()
{
	parent::startup();
	$this['gotoPanel'];
}

protected function createComponentGotoPanel()
{
	return new GotoPanel;
}

Panel used to show link