Example:
class MyController extends Controller {
protected $bInit = false;
public function onDispatch(\Zend\Mvc\MvcEvent $e) {
if (! $this-> bInit) {
$this->init();
$this-> bInit = true;
}
return parent::onDispatch($e);
}
No comments:
Post a Comment