[COMPONENT][RightPanel] Sends request object in the AppendRightPanelBlock
event
This commit is contained in:
parent
1947e99430
commit
63f9c6341e
@ -46,7 +46,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% set current_path = app.request.get('_route') %}
|
{% set current_path = app.request.get('_route') %}
|
||||||
{% for block in handle_event('AppendRightPanelBlock', {'path': current_path, 'vars': right_panel_vars | default }) %}
|
{% for block in handle_event('AppendRightPanelBlock', {'path': current_path, 'vars': right_panel_vars | default }, request) %}
|
||||||
{{ block | raw }}
|
{{ block | raw }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ Example
|
|||||||
-------
|
-------
|
||||||
|
|
||||||
```php
|
```php
|
||||||
public function onAppendRightPanelBlock(array $vars, array &$res): bool
|
public function onAppendRightPanelBlock(array $vars, Request $request, array &$res): bool
|
||||||
{
|
{
|
||||||
if ($vars['path'] == 'attachment_show') {
|
if ($vars['path'] == 'attachment_show') {
|
||||||
$related_notes = DB::dql('select n from attachment_to_note an ' .
|
$related_notes = DB::dql('select n from attachment_to_note an ' .
|
||||||
|
@ -31,7 +31,7 @@ use App\Util\Formatting;
|
|||||||
|
|
||||||
class AttachmentShowRelated extends Plugin
|
class AttachmentShowRelated extends Plugin
|
||||||
{
|
{
|
||||||
public function onAppendRightPanelBlock($vars, &$res): bool
|
public function onAppendRightPanelBlock($vars, $request, &$res): bool
|
||||||
{
|
{
|
||||||
if ($vars['path'] === 'attachment_show') {
|
if ($vars['path'] === 'attachment_show') {
|
||||||
$related_notes = DB::dql('select n from attachment_to_note an '
|
$related_notes = DB::dql('select n from attachment_to_note an '
|
||||||
|
Loading…
Reference in New Issue
Block a user