aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-09-15 11:11:24 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-09-15 11:11:24 +0200
commite77cde4531e6fe167c2bc42f18b19c191df2beca (patch)
tree85bcc287f6018e46e57410f587b8bb603f038e7f /src/Wallabag/CoreBundle/Controller
parentd49c88f15adfc97399e12b96283bb412b41a6d62 (diff)
downloadwallabag-e77cde4531e6fe167c2bc42f18b19c191df2beca.tar.gz
wallabag-e77cde4531e6fe167c2bc42f18b19c191df2beca.tar.zst
wallabag-e77cde4531e6fe167c2bc42f18b19c191df2beca.zip
Remove FooterController
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller')
-rw-r--r--src/Wallabag/CoreBundle/Controller/FooterController.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/FooterController.php b/src/Wallabag/CoreBundle/Controller/FooterController.php
deleted file mode 100644
index fd93c436..00000000
--- a/src/Wallabag/CoreBundle/Controller/FooterController.php
+++ /dev/null
@@ -1,27 +0,0 @@
1<?php
2
3namespace Wallabag\CoreBundle\Controller;
4
5use Symfony\Bundle\FrameworkBundle\Controller\Controller;
6
7class FooterController extends Controller
8{
9 /**
10 * Display the footer.
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');
18
19 return $this->render(
20 'WallabagCoreBundle::footer.html.twig',
21 [
22 'addonsUrl' => $addonsUrl,
23 'socialsUrl' => $socialsUrl,
24 ]
25 );
26 }
27}