Skip to content
Snippets Groups Projects
Commit 2855cc2b authored by Patrick Barroca's avatar Patrick Barroca :grin:
Browse files

dev #69826 add unnotify link in email

parent dfbc27c5
Branches
Tags
2 merge requests!2523Master,!2516Dev#69826 contractuel minsoc diffusion selective de l information enregistrer modifier ma recherche
Pipeline #3440 failed with stage
in 26 minutes and 17 seconds
......@@ -116,11 +116,14 @@ Il y a %s nouveau(x) résultat(s) pour votre recherche "%s" :
%s
%s
%s',
count($diff),
$this->getLabel(),
$this->_renderRecordsFromKeys($diff),
$this->_renderViewAll()
$this->_renderViewAll(),
$this->_renderUnnotify()
));
}
......@@ -154,6 +157,15 @@ Il y a %s nouveau(x) résultat(s) pour votre recherche "%s" :
}
protected function _renderUnnotify() {
return $this->_('Pour annuler les prochaines notifications de nouveautés pour la recherche %s. Veuillez cliquer sur le lien: %s',
$this->getLabel(),
Class_Url::absolute(['controller' => 'bookmarked-searches',
'action' => 'unnotify',
'id' => $this->getId()], null, true));
}
public function getResultUrl() {
$criterias = $this->getUnserializedCriterias();
$last_version = $this->getLastVersion();
......
......@@ -52,13 +52,13 @@ class ZendAfi_Controller_Plugin_Manager_BookmarkedSearches extends ZendAfi_Contr
protected function _checkBookmarkedSearchRequest() {
if(!$search = $this->_findModel()) {
$this->_helper->_notify($this->_('La recherche demandée est introuvable.'));
$this->_redirectClose($this->_getReferer());
$this->_redirectToIndex();
return;
}
if(!$search->belongsTo($this->_user)) {
$this->_helper->_notify($this->_('Cette recherche ne vous appartient pas.'));
$this->_redirectClose($this->_getReferer());
$this->_redirectToIndex();
return;
}
......@@ -67,7 +67,7 @@ class ZendAfi_Controller_Plugin_Manager_BookmarkedSearches extends ZendAfi_Contr
protected function _redirectToIndex() {
return $this->_redirectClose($this->_getReferer());
return $this->_redirectClose('abonne/settings');
}
......@@ -83,7 +83,7 @@ class ZendAfi_Controller_Plugin_Manager_BookmarkedSearches extends ZendAfi_Contr
$search->beNotified()->save();
$this->_helper->_notify($this->_('Les notifications de nouveautés pour la recherche "%s" sont activées.', $search->getLabel()));
return $this->_redirectClose($this->_getReferer());
$this->_redirectToIndex();
}
......@@ -94,7 +94,8 @@ class ZendAfi_Controller_Plugin_Manager_BookmarkedSearches extends ZendAfi_Contr
$search->beUnnotified()->save();
$this->_helper->_notify($this->_('Les notifications de nouveautés pour la recherche "%s" sont désactivées.', $search->getLabel()));
return $this->_redirectClose($this->_getReferer());
$this->_redirectToIndex();
}
......
......@@ -585,6 +585,13 @@ class Bookmarks_SearchCosmogrammePhaseTest
$this->assertContains('/recherche/simple/expressionRecherche/Harry+Potter/bookmarked_search/8/bookmarked_version/2018-02-07_105048',
$mail->getBodyText(true));
}
/** @test */
public function withRecordDiffShouldContainsLinkToUnnotify() {
$mail = $this->_mail_transport->getSentMails()[0];
$this->assertContains('/bookmarked-searches/unnotify/id/8', $mail->getBodyText(true));
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment