vojtech-dobes/nette-goto-panel

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

Maintainers

Package info

github.com/vojtech-dobes/nette-goto-panel

Homepage

pkg:composer/vojtech-dobes/nette-goto-panel

Statistics

Installs: 30

Dependents: 0

Suggesters: 0

Stars: 3

Open Issues: 6

2.0 2013-10-02 16:06 UTC

This package is not auto-updated.

Last update: 2026-03-14 19:04:28 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