Skip to content

Instantly share code, notes, and snippets.

@dg
Created May 31, 2018 13:54
Show Gist options
  • Save dg/e4b7fe40b78379e289f74c35474d43c2 to your computer and use it in GitHub Desktop.
Save dg/e4b7fe40b78379e289f74c35474d43c2 to your computer and use it in GitHub Desktop.
Transfer of a persistent parameter between two presenters without an inheritance
<?php
// transfer of a persistent parameter between two presenters without an inheritance
// (requires nette/application 3.0.0)
trait LangParameter
{
/** @persistent */
public $lang;
}
class OnePresenter extends Nette\Application\UI\Presenter
{
use LangParameter;
}
class TwoPresenter extends Nette\Application\UI\Presenter
{
use LangParameter;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment