File tree Expand file tree Collapse file tree 15 files changed +34
-31
lines changed
app/code/Magento/Catalog/Controller Expand file tree Collapse file tree 15 files changed +34
-31
lines changed Original file line number Diff line number Diff line change @@ -44,12 +44,12 @@ public function execute()
44
44
$ this ->_eventManager ->dispatch ('catalog_controller_category_delete ' , ['category ' => $ category ]);
45
45
$ this ->_auth ->getAuthStorage ()->setDeletedPath ($ category ->getPath ());
46
46
$ this ->categoryRepository ->delete ($ category );
47
- $ this ->messageManager ->addSuccess (__ ('You deleted the category. ' ));
47
+ $ this ->messageManager ->addSuccessMessage (__ ('You deleted the category. ' ));
48
48
} catch (\Magento \Framework \Exception \LocalizedException $ e ) {
49
- $ this ->messageManager ->addError ($ e ->getMessage ());
49
+ $ this ->messageManager ->addErrorMessage ($ e ->getMessage ());
50
50
return $ resultRedirect ->setPath ('catalog/*/edit ' , ['_current ' => true ]);
51
51
} catch (\Exception $ e ) {
52
- $ this ->messageManager ->addError (__ ('Something went wrong while trying to delete the category. ' ));
52
+ $ this ->messageManager ->addErrorMessage (__ ('Something went wrong while trying to delete the category. ' ));
53
53
return $ resultRedirect ->setPath ('catalog/*/edit ' , ['_current ' => true ]);
54
54
}
55
55
}
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ protected function _validateProducts()
54
54
}
55
55
56
56
if ($ error ) {
57
- $ this ->messageManager ->addError ($ error );
57
+ $ this ->messageManager ->addErrorMessage ($ error );
58
58
}
59
59
60
60
return !$ error ;
Original file line number Diff line number Diff line change @@ -192,7 +192,7 @@ public function execute()
192
192
$ this ->_eventManager ->dispatch ('catalog_product_to_website_change ' , ['products ' => $ productIds ]);
193
193
}
194
194
195
- $ this ->messageManager ->addSuccess (
195
+ $ this ->messageManager ->addSuccessMessage (
196
196
__ ('A total of %1 record(s) were updated. ' , count ($ this ->attributeHelper ->getProductIds ()))
197
197
);
198
198
@@ -205,9 +205,9 @@ public function execute()
205
205
$ this ->_productPriceIndexerProcessor ->reindexList ($ this ->attributeHelper ->getProductIds ());
206
206
}
207
207
} catch (\Magento \Framework \Exception \LocalizedException $ e ) {
208
- $ this ->messageManager ->addError ($ e ->getMessage ());
208
+ $ this ->messageManager ->addErrorMessage ($ e ->getMessage ());
209
209
} catch (\Exception $ e ) {
210
- $ this ->messageManager ->addException (
210
+ $ this ->messageManager ->addExceptionMessage (
211
211
$ e ,
212
212
__ ('Something went wrong while updating the product(s) attributes. ' )
213
213
);
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ public function execute()
68
68
$ response ->setError (true );
69
69
$ response ->setMessage ($ e ->getMessage ());
70
70
} catch (\Exception $ e ) {
71
- $ this ->messageManager ->addException (
71
+ $ this ->messageManager ->addExceptionMessage (
72
72
$ e ,
73
73
__ ('Something went wrong while updating the product(s) attributes. ' )
74
74
);
Original file line number Diff line number Diff line change @@ -21,23 +21,23 @@ public function execute()
21
21
// entity type check
22
22
$ model ->load ($ id );
23
23
if ($ model ->getEntityTypeId () != $ this ->_entityTypeId ) {
24
- $ this ->messageManager ->addError (__ ('We can \'t delete the attribute. ' ));
24
+ $ this ->messageManager ->addErrorMessage (__ ('We can \'t delete the attribute. ' ));
25
25
return $ resultRedirect ->setPath ('catalog/*/ ' );
26
26
}
27
27
28
28
try {
29
29
$ model ->delete ();
30
- $ this ->messageManager ->addSuccess (__ ('You deleted the product attribute. ' ));
30
+ $ this ->messageManager ->addSuccessMessage (__ ('You deleted the product attribute. ' ));
31
31
return $ resultRedirect ->setPath ('catalog/*/ ' );
32
32
} catch (\Exception $ e ) {
33
- $ this ->messageManager ->addError ($ e ->getMessage ());
33
+ $ this ->messageManager ->addErrorMessage ($ e ->getMessage ());
34
34
return $ resultRedirect ->setPath (
35
35
'catalog/*/edit ' ,
36
36
['attribute_id ' => $ this ->getRequest ()->getParam ('attribute_id ' )]
37
37
);
38
38
}
39
39
}
40
- $ this ->messageManager ->addError (__ ('We can \'t find an attribute to delete. ' ));
40
+ $ this ->messageManager ->addErrorMessage (__ ('We can \'t find an attribute to delete. ' ));
41
41
return $ resultRedirect ->setPath ('catalog/*/ ' );
42
42
}
43
43
}
Original file line number Diff line number Diff line change @@ -25,14 +25,14 @@ public function execute()
25
25
$ model ->load ($ id );
26
26
27
27
if (!$ model ->getId ()) {
28
- $ this ->messageManager ->addError (__ ('This attribute no longer exists. ' ));
28
+ $ this ->messageManager ->addErrorMessage (__ ('This attribute no longer exists. ' ));
29
29
$ resultRedirect = $ this ->resultRedirectFactory ->create ();
30
30
return $ resultRedirect ->setPath ('catalog/*/ ' );
31
31
}
32
32
33
33
// entity type check
34
34
if ($ model ->getEntityTypeId () != $ this ->_entityTypeId ) {
35
- $ this ->messageManager ->addError (__ ('This attribute cannot be edited. ' ));
35
+ $ this ->messageManager ->addErrorMessage (__ ('This attribute cannot be edited. ' ));
36
36
$ resultRedirect = $ this ->resultRedirectFactory ->create ();
37
37
return $ resultRedirect ->setPath ('catalog/*/ ' );
38
38
}
Original file line number Diff line number Diff line change @@ -43,11 +43,11 @@ public function execute()
43
43
$ product = $ this ->productBuilder ->build ($ this ->getRequest ());
44
44
try {
45
45
$ newProduct = $ this ->productCopier ->copy ($ product );
46
- $ this ->messageManager ->addSuccess (__ ('You duplicated the product. ' ));
46
+ $ this ->messageManager ->addSuccessMessage (__ ('You duplicated the product. ' ));
47
47
$ resultRedirect ->setPath ('catalog/*/edit ' , ['_current ' => true , 'id ' => $ newProduct ->getId ()]);
48
48
} catch (\Exception $ e ) {
49
49
$ this ->_objectManager ->get (\Psr \Log \LoggerInterface::class)->critical ($ e );
50
- $ this ->messageManager ->addError ($ e ->getMessage ());
50
+ $ this ->messageManager ->addErrorMessage ($ e ->getMessage ());
51
51
$ resultRedirect ->setPath ('catalog/*/edit ' , ['_current ' => true ]);
52
52
}
53
53
return $ resultRedirect ;
Original file line number Diff line number Diff line change @@ -52,12 +52,12 @@ public function execute()
52
52
if (($ productId && !$ product ->getEntityId ())) {
53
53
/** @var \Magento\Backend\Model\View\Result\Redirect $resultRedirect */
54
54
$ resultRedirect = $ this ->resultRedirectFactory ->create ();
55
- $ this ->messageManager ->addError (__ ('This product doesn \'t exist. ' ));
55
+ $ this ->messageManager ->addErrorMessage (__ ('This product doesn \'t exist. ' ));
56
56
return $ resultRedirect ->setPath ('catalog/*/ ' );
57
57
} elseif ($ productId === 0 ) {
58
58
/** @var \Magento\Backend\Model\View\Result\Redirect $resultRedirect */
59
59
$ resultRedirect = $ this ->resultRedirectFactory ->create ();
60
- $ this ->messageManager ->addError (__ ('Invalid product id. Should be numeric value greater than 0 ' ));
60
+ $ this ->messageManager ->addErrorMessage (__ ('Invalid product id. Should be numeric value greater than 0 ' ));
61
61
return $ resultRedirect ->setPath ('catalog/*/ ' );
62
62
}
63
63
Original file line number Diff line number Diff line change @@ -29,12 +29,12 @@ public function execute()
29
29
);
30
30
31
31
if ($ model ->itemExists ()) {
32
- $ this ->messageManager ->addError (__ ('A group with the same name already exists. ' ));
32
+ $ this ->messageManager ->addErrorMessage (__ ('A group with the same name already exists. ' ));
33
33
} else {
34
34
try {
35
35
$ model ->save ();
36
36
} catch (\Exception $ e ) {
37
- $ this ->messageManager ->addError (__ ('Something went wrong while saving this group. ' ));
37
+ $ this ->messageManager ->addErrorMessage (__ ('Something went wrong while saving this group. ' ));
38
38
}
39
39
}
40
40
}
Original file line number Diff line number Diff line change @@ -36,10 +36,10 @@ public function execute()
36
36
$ resultRedirect = $ this ->resultRedirectFactory ->create ();
37
37
try {
38
38
$ this ->attributeSetRepository ->deleteById ($ setId );
39
- $ this ->messageManager ->addSuccess (__ ('The attribute set has been removed. ' ));
39
+ $ this ->messageManager ->addSuccessMessage (__ ('The attribute set has been removed. ' ));
40
40
$ resultRedirect ->setPath ('catalog/*/ ' );
41
41
} catch (\Exception $ e ) {
42
- $ this ->messageManager ->addError (__ ('We can \'t delete this set right now. ' ));
42
+ $ this ->messageManager ->addErrorMessage (__ ('We can \'t delete this set right now. ' ));
43
43
$ resultRedirect ->setUrl ($ this ->_redirect ->getRedirectUrl ($ this ->getUrl ('* ' )));
44
44
}
45
45
return $ resultRedirect ;
You can’t perform that action at this time.
0 commit comments