]>
Commit | Line | Data |
---|---|---|
39f27d63 S |
1 | <?php |
2 | ||
3 | namespace Wallabag\CoreBundle\Controller; | |
4 | ||
5 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; | |
6 | ||
7 | class FooterController extends Controller | |
8 | { | |
9 | /** | |
57c608fa | 10 | * Display the footer. |
39f27d63 S |
11 | * |
12 | * @return \Symfony\Component\HttpFoundation\Response | |
13 | */ | |
14 | public function indexAction() | |
15 | { | |
16 | $addonsUrl = $this->container->getParameter('addons_url'); | |
17 | $socialsUrl = $this->container->getParameter('socials_url'); | |
57c608fa | 18 | |
39f27d63 S |
19 | return $this->render( |
20 | 'WallabagCoreBundle::footer.html.twig', | |
21 | [ | |
22 | 'addonsUrl' => $addonsUrl, | |
57c608fa | 23 | 'socialsUrl' => $socialsUrl, |
39f27d63 S |
24 | ] |
25 | ); | |
26 | } | |
27 | } |