Skip to content

Instantly share code, notes, and snippets.

@dmitrybelyakov
Created February 20, 2014 07:34
Show Gist options
  • Save dmitrybelyakov/9108635 to your computer and use it in GitHub Desktop.
Save dmitrybelyakov/9108635 to your computer and use it in GitHub Desktop.
//action helpers (controller plugins)
'controller_plugins' => array(
'invokables' => array(
'isAllowed' => 'ShiftUser\Access\ActionHelper\IsAllowed'
),
'factories' => array(
'ShiftUser\Access\ActionHelper\IsAllowed' => function($sm){
$class = new \ShiftUser\Access\ActionHelper\IsAllowed($sm);
$class->createByFactory();
return $class;
},
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment