How to use a Widget as an Action Provider

Comparing #9 with #10

Content

[...]
);
}
```

##Access Rules
Also, if you have implemented the accessRules method in
side the controller, then you'll need to make sure that you _allow_ thate action provider in the accessRules method, otherwise you will receive 404 error. So, s when trying to view the page. Something like this will do the trick:


```php
public function accessRules()
{
[...]