X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FController%2FStaticController.php;h=2a57f06fb055bc416ad037ed7a8580b91e4eea3c;hb=ceebf13fe8803bd7ac7b64797ce75da82cebc261;hp=09be1b74f87606d0cb0b064665c572db6a41ee16;hpb=f48a0189290ae6dbdb0412a3abd95acd257e55cd;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Controller/StaticController.php b/src/Wallabag/CoreBundle/Controller/StaticController.php index 09be1b74..2a57f06f 100644 --- a/src/Wallabag/CoreBundle/Controller/StaticController.php +++ b/src/Wallabag/CoreBundle/Controller/StaticController.php @@ -10,13 +10,16 @@ class StaticController extends Controller /** * @Route("/howto", name="howto") */ - public function howtoAction() - { - return $this->render( - 'WallabagCoreBundle:Static:howto.html.twig', - array() - ); - } + public function howtoAction() + { + $addonsUrl = $this->container->getParameter('addons_url'); + + return $this->render( + 'WallabagCoreBundle:Static:howto.html.twig', + ['addonsUrl' => $addonsUrl] + ); + } + /** * @Route("/about", name="about") */ @@ -24,15 +27,21 @@ class StaticController extends Controller { return $this->render( 'WallabagCoreBundle:Static:about.html.twig', - array() + [ + 'version' => $this->getParameter('wallabag_core.version'), + 'paypal_url' => $this->getParameter('wallabag_core.paypal_url'), + ] ); } /** - * @Route("/", name="homepage") + * @Route("/quickstart", name="quickstart") */ - public function apiAction() + public function quickstartAction() { - return $this->redirect($this->generateUrl('nelmio_api_doc_index')); + return $this->render( + 'WallabagCoreBundle:Static:quickstart.html.twig', + [] + ); } }