wallabag/src/Wallabag/CoreBundle/Controller/StaticController.php

49 lines
1.1 KiB
PHP
Raw Normal View History

2015-01-23 11:45:24 +00:00
<?php
namespace Wallabag\CoreBundle\Controller;
2015-01-23 11:45:24 +00:00
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\Routing\Annotation\Route;
2015-01-23 11:45:24 +00:00
class StaticController extends Controller
{
2015-08-07 19:22:43 +00:00
/**
* @Route("/howto", name="howto")
*/
public function howtoAction()
{
$addonsUrl = $this->getParameter('addons_url');
2016-07-20 21:08:04 +00:00
return $this->render(
'@WallabagCore/Static/howto.html.twig',
2017-07-01 07:52:38 +00:00
[
'addonsUrl' => $addonsUrl,
]
);
}
2015-01-23 11:45:24 +00:00
/**
* @Route("/about", name="about")
*/
public function aboutAction()
{
return $this->render(
'@WallabagCore/Static/about.html.twig',
[
2016-01-21 07:53:09 +00:00
'version' => $this->getParameter('wallabag_core.version'),
'paypal_url' => $this->getParameter('wallabag_core.paypal_url'),
]
2015-01-23 11:45:24 +00:00
);
}
2016-01-09 13:34:49 +00:00
/**
* @Route("/quickstart", name="quickstart")
*/
public function quickstartAction()
{
return $this->render(
'@WallabagCore/Static/quickstart.html.twig'
2016-01-09 13:34:49 +00:00
);
}
2015-01-23 11:45:24 +00:00
}