Rewrite of session management
This commit is contained in:
@@ -71,10 +71,10 @@ class Link extends Base
|
||||
|
||||
if ($valid) {
|
||||
if ($this->link->create($values['label'], $values['opposite_label']) !== false) {
|
||||
$this->session->flash(t('Link added successfully.'));
|
||||
$this->flash->success(t('Link added successfully.'));
|
||||
$this->response->redirect($this->helper->url->to('link', 'index'));
|
||||
} else {
|
||||
$this->session->flashError(t('Unable to create your link.'));
|
||||
$this->flash->failure(t('Unable to create your link.'));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -112,10 +112,10 @@ class Link extends Base
|
||||
|
||||
if ($valid) {
|
||||
if ($this->link->update($values)) {
|
||||
$this->session->flash(t('Link updated successfully.'));
|
||||
$this->flash->success(t('Link updated successfully.'));
|
||||
$this->response->redirect($this->helper->url->to('link', 'index'));
|
||||
} else {
|
||||
$this->session->flashError(t('Unable to update your link.'));
|
||||
$this->flash->failure(t('Unable to update your link.'));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -148,9 +148,9 @@ class Link extends Base
|
||||
$link = $this->getLink();
|
||||
|
||||
if ($this->link->remove($link['id'])) {
|
||||
$this->session->flash(t('Link removed successfully.'));
|
||||
$this->flash->success(t('Link removed successfully.'));
|
||||
} else {
|
||||
$this->session->flashError(t('Unable to remove this link.'));
|
||||
$this->flash->failure(t('Unable to remove this link.'));
|
||||
}
|
||||
|
||||
$this->response->redirect($this->helper->url->to('link', 'index'));
|
||||
|
||||
Reference in New Issue
Block a user