Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save longtailventures/5ec374f9f0fcdeb5b053c0d0217446ed to your computer and use it in GitHub Desktop.
Save longtailventures/5ec374f9f0fcdeb5b053c0d0217446ed to your computer and use it in GitHub Desktop.
Slim page tracking
in router file:
$slimApplication->get(
'/demo/control',
'controllers.ad:demoAction'
)
->setArgument('mode', 'control')
->setArgument('demoIndex', null)
->setName('controllers.ad:demoAction');
in action function:
$this->_app['app.currentControllerAction'] = $request->getAttribute('route')->getName();
in layout file:
<!-- TEST: <?= $_app['app.currentControllerAction'] ?> -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment