This repository was archived by the owner on Sep 16, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -615,7 +615,7 @@ configuration in the ``sonata_admin`` section of your project configuration:
615
615
See the `Sonata Admin extension documentation `_ for more information.
616
616
617
617
FrontendLink Sonata Admin Extension
618
- ----------------------------------------------
618
+ -----------------------------------
619
619
620
620
This bundle provides an extension to show a button in Sonata Admin, which links on the actual
621
621
frontend representation of a document. Documents which implement the ``RouteReferrersReadInterface ``
@@ -635,6 +635,8 @@ configuration in the ``sonata_admin`` section of your project configuration:
635
635
cmf_routing.admin_extension.frontend_link :
636
636
implements :
637
637
- Symfony\Cmf\Component\Routing\RouteReferrersReadInterface
638
+ extends :
639
+ - Symfony\Component\Routing\Route
638
640
639
641
.. code-block :: xml
640
642
@@ -643,6 +645,7 @@ configuration in the ``sonata_admin`` section of your project configuration:
643
645
<!-- ... -->
644
646
<extension id =" cmf_routing.admin_extension.frontend_link" >
645
647
<implement >Symfony\Cmf\Component\Routing\RouteReferrersReadInterface</implement >
648
+ <extend >Symfony\Component\Routing\Route</extend >
646
649
</extension >
647
650
</config >
648
651
@@ -655,6 +658,9 @@ configuration in the ``sonata_admin`` section of your project configuration:
655
658
'implements' => array(
656
659
'Symfony\Cmf\Component\Routing\RouteReferrersReadInterface',
657
660
),
661
+ 'extends' => array(
662
+ 'Symfony\Component\Routing\Route',
663
+ ),
658
664
),
659
665
),
660
666
));
You can’t perform that action at this time.
0 commit comments