X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FController%2FStaticController.php;h=fa760c14414be97a6066c3634724f95db0e1630b;hb=92a66835624acf6fd14f5adc5f8aab399658592e;hp=09be1b74f87606d0cb0b064665c572db6a41ee16;hpb=b7dd5f824c0d533c2a902ae41b70ac740ecd2fec;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Controller/StaticController.php b/src/Wallabag/CoreBundle/Controller/StaticController.php index 09be1b74..fa760c14 100644 --- a/src/Wallabag/CoreBundle/Controller/StaticController.php +++ b/src/Wallabag/CoreBundle/Controller/StaticController.php @@ -2,37 +2,47 @@ namespace Wallabag\CoreBundle\Controller; -use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; use Symfony\Bundle\FrameworkBundle\Controller\Controller; +use Symfony\Component\Routing\Annotation\Route; 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( + '@WallabagCore/themes/common/Static/howto.html.twig', + [ + 'addonsUrl' => $addonsUrl, + ] + ); + } + /** * @Route("/about", name="about") */ public function aboutAction() { return $this->render( - 'WallabagCoreBundle:Static:about.html.twig', - array() + '@WallabagCore/themes/common/Static/about.html.twig', + [ + '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( + '@WallabagCore/themes/common/Static/quickstart.html.twig' + ); } }