Skip to content

Commit

Permalink
add Forward.md
Browse files Browse the repository at this point in the history
  • Loading branch information
easy-system committed Jun 14, 2016
1 parent 3f4eb32 commit 51658f2
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
File renamed without changes.
26 changes: 26 additions & 0 deletions docs/002.Forward.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Forward
=======

The plugin allows to dispatch additional controllers:
```
use Es\ControllerPlugins\PluginsTrait;
class ExampleController
{
use PluginsTrait;
public function fooAction()
{
$result = $this->forward('Foo.Bar.Baz', 'index', ['foo' => 'bar']);
// ...
}
}
```
Arguments:

- The first argument should specify the name of controller exactly as the
controller has been registered in the `Controllers` service.
- The second argument should specify the name of action withot `Action` postfix;
`null` as argument means `index` action.
- Optionally you can specify the third argument as array of parameters, that
will be added to event of dispatch.

0 comments on commit 51658f2

Please sign in to comment.