mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-19 22:26:28 +00:00
47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Wallabag\CoreBundle\Controller;
|
|
|
|
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
|
|
|
class StaticController extends Controller
|
|
{
|
|
/**
|
|
* @Route("/howto", name="howto")
|
|
*/
|
|
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(
|
|
'@WallabagCore/themes/common/Static/about.html.twig',
|
|
[
|
|
'version' => $this->getParameter('wallabag_core.version'),
|
|
'paypal_url' => $this->getParameter('wallabag_core.paypal_url'),
|
|
]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @Route("/quickstart", name="quickstart")
|
|
*/
|
|
public function quickstartAction()
|
|
{
|
|
return $this->render(
|
|
'@WallabagCore/themes/common/Static/quickstart.html.twig',
|
|
[]
|
|
);
|
|
}
|
|
}
|