1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

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.

This commit is contained in:
banux 2013-10-27 07:37:05 +01:00
parent 2b191d8c37
commit 363bc4eb86
3 changed files with 13 additions and 2 deletions

View file

@ -327,7 +327,7 @@ class Poche
/**
* Call action (mark as fav, archive, delete, etc.)
*/
public function action($action, Url $url, $id = 0, $import = FALSE)
public function action($action, Url $url, $id = 0, $import = FALSE, $autoclose = FALSE)
{
switch ($action)
{
@ -358,7 +358,11 @@ class Poche
}
if (!$import) {
Tools::redirect('?view=home');
if ($autoclose == TRUE) {
Tools::redirect('?view=home');
} else {
Tools::redirect('?view=home&autoclose=true');
}
}
break;
case 'delete':