diff options
author | banux <banux@helheim.net> | 2013-10-27 07:37:05 +0100 |
---|---|---|
committer | banux <banux@helheim.net> | 2013-10-27 07:37:05 +0100 |
commit | 363bc4eb8642d464cc0c099f7ab72a425b56b463 (patch) | |
tree | a749a4b5da749826752aaeb2ab8ee1c6c683427d /inc/poche | |
parent | 2b191d8c37bd774bd3eecbf42a5ac9d948ee61a9 (diff) | |
download | wallabag-363bc4eb8642d464cc0c099f7ab72a425b56b463.tar.gz wallabag-363bc4eb8642d464cc0c099f7ab72a425b56b463.tar.zst wallabag-363bc4eb8642d464cc0c099f7ab72a425b56b463.zip |
Add a autoclose parameters. When we use sharing method in plugins like the tiny tiny rss one or the firefox plugins we can passe the autoclose=true parameters that close the popup.
Diffstat (limited to 'inc/poche')
-rw-r--r-- | inc/poche/Poche.class.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php index 39d43761..5d807268 100644 --- a/inc/poche/Poche.class.php +++ b/inc/poche/Poche.class.php | |||
@@ -327,7 +327,7 @@ class Poche | |||
327 | /** | 327 | /** |
328 | * Call action (mark as fav, archive, delete, etc.) | 328 | * Call action (mark as fav, archive, delete, etc.) |
329 | */ | 329 | */ |
330 | public function action($action, Url $url, $id = 0, $import = FALSE) | 330 | public function action($action, Url $url, $id = 0, $import = FALSE, $autoclose = FALSE) |
331 | { | 331 | { |
332 | switch ($action) | 332 | switch ($action) |
333 | { | 333 | { |
@@ -358,7 +358,11 @@ class Poche | |||
358 | } | 358 | } |
359 | 359 | ||
360 | if (!$import) { | 360 | if (!$import) { |
361 | Tools::redirect('?view=home'); | 361 | if ($autoclose == TRUE) { |
362 | Tools::redirect('?view=home'); | ||
363 | } else { | ||
364 | Tools::redirect('?view=home&autoclose=true'); | ||
365 | } | ||
362 | } | 366 | } |
363 | break; | 367 | break; |
364 | case 'delete': | 368 | case 'delete': |