1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-17 17:08:37 +00:00

flash messages pour indiquer qu'une action s'est bien effectuée ou qu'il y a eu une erreur

This commit is contained in:
nicosomb 2013-04-21 19:32:19 +02:00
parent 6f87a19714
commit f0070a15e4
12 changed files with 265 additions and 7 deletions

View file

@ -125,6 +125,7 @@ function prepare_url($url)
}
}
$msg->add('e', 'error during url preparation');
logm('error during url preparation');
return FALSE;
}
@ -236,7 +237,7 @@ function remove_directory($directory)
function display_view($view, $id = 0, $full_head = 'yes')
{
global $tpl, $store;
global $tpl, $store, $msg;
switch ($view)
{
@ -300,7 +301,7 @@ function display_view($view, $id = 0, $full_head = 'yes')
*/
function action_to_do($action, $url, $id = 0)
{
global $store;
global $store, $msg;
switch ($action)
{
@ -315,9 +316,11 @@ function action_to_do($action, $url, $id = 0)
if (DOWNLOAD_PICTURES) {
$content = filtre_picture($parametres_url['content'], $url, $last_id);
}
$msg->add('s', 'the link has been added successfully');
}
}
else {
$msg->add('e', 'the link has been added successfully');
logm($url . ' is not a valid url');
}
@ -326,14 +329,17 @@ function action_to_do($action, $url, $id = 0)
case 'delete':
remove_directory(ABS_PATH . $id);
$store->deleteById($id);
$msg->add('s', 'the link has been deleted successfully');
logm('delete link #' . $id);
break;
case 'toggle_fav' :
$store->favoriteById($id);
$msg->add('s', 'the favorite toggle has been done successfully');
logm('mark as favorite link #' . $id);
break;
case 'toggle_archive' :
$store->archiveById($id);
$msg->add('s', 'the archive toggle has been done successfully');
logm('archive link #' . $id);
break;
default: