aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-11-07 09:30:37 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-11-16 23:07:34 +0100
commitf052f1fd57e51c8ae5ac17587636d608619a2057 (patch)
tree7b9169ff4522356d979ea94858d9cb892be90611
parent287204cda72c73e171cd1bf801bc08f7e5d7d111 (diff)
downloadwallabag-f052f1fd57e51c8ae5ac17587636d608619a2057.tar.gz
wallabag-f052f1fd57e51c8ae5ac17587636d608619a2057.tar.zst
wallabag-f052f1fd57e51c8ae5ac17587636d608619a2057.zip
Added constants for redirection values
-rw-r--r--src/Wallabag/CoreBundle/Entity/Config.php3
-rw-r--r--src/Wallabag/CoreBundle/Form/Type/ConfigType.php5
-rw-r--r--src/Wallabag/CoreBundle/Helper/Redirect.php3
3 files changed, 8 insertions, 3 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/Config.php b/src/Wallabag/CoreBundle/Entity/Config.php
index c40d1535..bfc2fff8 100644
--- a/src/Wallabag/CoreBundle/Entity/Config.php
+++ b/src/Wallabag/CoreBundle/Entity/Config.php
@@ -16,6 +16,9 @@ use Wallabag\UserBundle\Entity\User;
16 */ 16 */
17class Config 17class Config
18{ 18{
19 const REDIRECT_TO_HOMEPAGE = 0;
20 const REDIRECT_TO_CURRENT_PAGE = 1;
21
19 /** 22 /**
20 * @var int 23 * @var int
21 * 24 *
diff --git a/src/Wallabag/CoreBundle/Form/Type/ConfigType.php b/src/Wallabag/CoreBundle/Form/Type/ConfigType.php
index 3b1a8026..7e3b9dd4 100644
--- a/src/Wallabag/CoreBundle/Form/Type/ConfigType.php
+++ b/src/Wallabag/CoreBundle/Form/Type/ConfigType.php
@@ -7,6 +7,7 @@ use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
7use Symfony\Component\Form\Extension\Core\Type\SubmitType; 7use Symfony\Component\Form\Extension\Core\Type\SubmitType;
8use Symfony\Component\Form\FormBuilderInterface; 8use Symfony\Component\Form\FormBuilderInterface;
9use Symfony\Component\OptionsResolver\OptionsResolver; 9use Symfony\Component\OptionsResolver\OptionsResolver;
10use Wallabag\CoreBundle\Entity\Config;
10 11
11class ConfigType extends AbstractType 12class ConfigType extends AbstractType
12{ 13{
@@ -51,8 +52,8 @@ class ConfigType extends AbstractType
51 ->add('action_mark_as_read', ChoiceType::class, [ 52 ->add('action_mark_as_read', ChoiceType::class, [
52 'label' => 'config.form_settings.action_mark_as_read.label', 53 'label' => 'config.form_settings.action_mark_as_read.label',
53 'choices' => [ 54 'choices' => [
54 'config.form_settings.action_mark_as_read.redirect_homepage' => '0', 55 'config.form_settings.action_mark_as_read.redirect_homepage' => Config::REDIRECT_TO_HOMEPAGE,
55 'config.form_settings.action_mark_as_read.redirect_current_page' => '1', 56 'config.form_settings.action_mark_as_read.redirect_current_page' => Config::REDIRECT_TO_CURRENT_PAGE,
56 ], 57 ],
57 ]) 58 ])
58 ->add('language', ChoiceType::class, [ 59 ->add('language', ChoiceType::class, [
diff --git a/src/Wallabag/CoreBundle/Helper/Redirect.php b/src/Wallabag/CoreBundle/Helper/Redirect.php
index 918d9266..59172db4 100644
--- a/src/Wallabag/CoreBundle/Helper/Redirect.php
+++ b/src/Wallabag/CoreBundle/Helper/Redirect.php
@@ -4,6 +4,7 @@ namespace Wallabag\CoreBundle\Helper;
4 4
5use Symfony\Component\Routing\Router; 5use Symfony\Component\Routing\Router;
6use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage; 6use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage;
7use Wallabag\CoreBundle\Entity\Config;
7 8
8/** 9/**
9 * Manage redirections to avoid redirecting to empty routes. 10 * Manage redirections to avoid redirecting to empty routes.
@@ -27,7 +28,7 @@ class Redirect
27 */ 28 */
28 public function to($url, $fallback = '') 29 public function to($url, $fallback = '')
29 { 30 {
30 if ($this->actionMarkAsRead == 0) { 31 if (Config::REDIRECT_TO_HOMEPAGE === $this->actionMarkAsRead) {
31 return $this->router->generate('homepage'); 32 return $this->router->generate('homepage');
32 } 33 }
33 34