diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-09-15 11:11:24 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-09-15 11:11:24 +0200 |
commit | e77cde4531e6fe167c2bc42f18b19c191df2beca (patch) | |
tree | 85bcc287f6018e46e57410f587b8bb603f038e7f /src/Wallabag/CoreBundle/Controller | |
parent | d49c88f15adfc97399e12b96283bb412b41a6d62 (diff) | |
download | wallabag-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.php | 27 |
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 | |||
3 | namespace Wallabag\CoreBundle\Controller; | ||
4 | |||
5 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; | ||
6 | |||
7 | class 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 | } | ||