magento 2 issue with event observer help needed
i tried to replicate : Redirect add to cart for affiliate products
in magento 2 but it does not work below is my module code
DevshreeAffliliateetcfrontendevents.xml
code:
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">
<event name="controller_action_predispatch_checkout_cart_add">
<observer name="devshree_affliliate_event_obs" instance="DevshreeAffliliateObserverredirectExternalLink" />
</event>
</config>
and
DevshreeAffliliateModelObserver.php
code :
namespace DevshreeAffliliateObserver;
use MagentoFrameworkEventObserver;
use MagentoFrameworkEventObserverInterface;
class redirectExternalLink implements ObserverInterface {
public function execute(Observer $observer) {
$productId = Mage::app()->getRequest()->getParam('product', 0);
$product = Mage::getModel('catalog/product')->load($productId);
// Check for value set on this product for external_link attribute.
if ($url = $product->getExternalLink()) {
Mage::app()->getResponse()->setRedirect($url);
Mage::app()->getResponse()->sendResponse();
exit;
}
return $this;
}
}
magento2 event-observer
bumped to the homepage by Community♦ 5 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
i tried to replicate : Redirect add to cart for affiliate products
in magento 2 but it does not work below is my module code
DevshreeAffliliateetcfrontendevents.xml
code:
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">
<event name="controller_action_predispatch_checkout_cart_add">
<observer name="devshree_affliliate_event_obs" instance="DevshreeAffliliateObserverredirectExternalLink" />
</event>
</config>
and
DevshreeAffliliateModelObserver.php
code :
namespace DevshreeAffliliateObserver;
use MagentoFrameworkEventObserver;
use MagentoFrameworkEventObserverInterface;
class redirectExternalLink implements ObserverInterface {
public function execute(Observer $observer) {
$productId = Mage::app()->getRequest()->getParam('product', 0);
$product = Mage::getModel('catalog/product')->load($productId);
// Check for value set on this product for external_link attribute.
if ($url = $product->getExternalLink()) {
Mage::app()->getResponse()->setRedirect($url);
Mage::app()->getResponse()->sendResponse();
exit;
}
return $this;
}
}
magento2 event-observer
bumped to the homepage by Community♦ 5 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
You've copied a little too much from that Magento 1 snippet: there's noMage::app()
in Magento 2. Haven't tried, but I think you can do it by injectingMagentoFrameworkAppResponseHttp
in your observer, and setting the redirect URL in that, then exiting.
– nevvermind
Apr 18 '16 at 0:15
add a comment |
i tried to replicate : Redirect add to cart for affiliate products
in magento 2 but it does not work below is my module code
DevshreeAffliliateetcfrontendevents.xml
code:
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">
<event name="controller_action_predispatch_checkout_cart_add">
<observer name="devshree_affliliate_event_obs" instance="DevshreeAffliliateObserverredirectExternalLink" />
</event>
</config>
and
DevshreeAffliliateModelObserver.php
code :
namespace DevshreeAffliliateObserver;
use MagentoFrameworkEventObserver;
use MagentoFrameworkEventObserverInterface;
class redirectExternalLink implements ObserverInterface {
public function execute(Observer $observer) {
$productId = Mage::app()->getRequest()->getParam('product', 0);
$product = Mage::getModel('catalog/product')->load($productId);
// Check for value set on this product for external_link attribute.
if ($url = $product->getExternalLink()) {
Mage::app()->getResponse()->setRedirect($url);
Mage::app()->getResponse()->sendResponse();
exit;
}
return $this;
}
}
magento2 event-observer
i tried to replicate : Redirect add to cart for affiliate products
in magento 2 but it does not work below is my module code
DevshreeAffliliateetcfrontendevents.xml
code:
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">
<event name="controller_action_predispatch_checkout_cart_add">
<observer name="devshree_affliliate_event_obs" instance="DevshreeAffliliateObserverredirectExternalLink" />
</event>
</config>
and
DevshreeAffliliateModelObserver.php
code :
namespace DevshreeAffliliateObserver;
use MagentoFrameworkEventObserver;
use MagentoFrameworkEventObserverInterface;
class redirectExternalLink implements ObserverInterface {
public function execute(Observer $observer) {
$productId = Mage::app()->getRequest()->getParam('product', 0);
$product = Mage::getModel('catalog/product')->load($productId);
// Check for value set on this product for external_link attribute.
if ($url = $product->getExternalLink()) {
Mage::app()->getResponse()->setRedirect($url);
Mage::app()->getResponse()->sendResponse();
exit;
}
return $this;
}
}
magento2 event-observer
magento2 event-observer
edited Apr 13 '17 at 12:55
Community♦
1
1
asked Apr 17 '16 at 4:33
mcodermcoder
3981931
3981931
bumped to the homepage by Community♦ 5 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 5 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
You've copied a little too much from that Magento 1 snippet: there's noMage::app()
in Magento 2. Haven't tried, but I think you can do it by injectingMagentoFrameworkAppResponseHttp
in your observer, and setting the redirect URL in that, then exiting.
– nevvermind
Apr 18 '16 at 0:15
add a comment |
You've copied a little too much from that Magento 1 snippet: there's noMage::app()
in Magento 2. Haven't tried, but I think you can do it by injectingMagentoFrameworkAppResponseHttp
in your observer, and setting the redirect URL in that, then exiting.
– nevvermind
Apr 18 '16 at 0:15
You've copied a little too much from that Magento 1 snippet: there's no
Mage::app()
in Magento 2. Haven't tried, but I think you can do it by injecting MagentoFrameworkAppResponseHttp
in your observer, and setting the redirect URL in that, then exiting.– nevvermind
Apr 18 '16 at 0:15
You've copied a little too much from that Magento 1 snippet: there's no
Mage::app()
in Magento 2. Haven't tried, but I think you can do it by injecting MagentoFrameworkAppResponseHttp
in your observer, and setting the redirect URL in that, then exiting.– nevvermind
Apr 18 '16 at 0:15
add a comment |
1 Answer
1
active
oldest
votes
You have to use "ActionFlag" and set a NO_DISPATCH. Using exit is not recommended
:
<?php
...
use MagentoFrameworkAppActionFlag;
...
class MyObserver implements ObserverInterface
{
...
protected $actionFlag;
...
public function __construct(
...
ActionFlag $actionFlag
) {
...
$this->actionFlag = $actionFlag;
}
public function execute(Observer $observer)
{
$this->actionFlag->set('', MagentoFrameworkAppActionAction::FLAG_NO_DISPATCH, true);
$controller->getResponse()->setRedirect(
$controller->getUrl($myNewUrl)
);
}
...
P.S: Your code is Magento 1 mixed with Magento 2, you should use Magento 2 way.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f111204%2fmagento-2-issue-with-event-observer-help-needed%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You have to use "ActionFlag" and set a NO_DISPATCH. Using exit is not recommended
:
<?php
...
use MagentoFrameworkAppActionFlag;
...
class MyObserver implements ObserverInterface
{
...
protected $actionFlag;
...
public function __construct(
...
ActionFlag $actionFlag
) {
...
$this->actionFlag = $actionFlag;
}
public function execute(Observer $observer)
{
$this->actionFlag->set('', MagentoFrameworkAppActionAction::FLAG_NO_DISPATCH, true);
$controller->getResponse()->setRedirect(
$controller->getUrl($myNewUrl)
);
}
...
P.S: Your code is Magento 1 mixed with Magento 2, you should use Magento 2 way.
add a comment |
You have to use "ActionFlag" and set a NO_DISPATCH. Using exit is not recommended
:
<?php
...
use MagentoFrameworkAppActionFlag;
...
class MyObserver implements ObserverInterface
{
...
protected $actionFlag;
...
public function __construct(
...
ActionFlag $actionFlag
) {
...
$this->actionFlag = $actionFlag;
}
public function execute(Observer $observer)
{
$this->actionFlag->set('', MagentoFrameworkAppActionAction::FLAG_NO_DISPATCH, true);
$controller->getResponse()->setRedirect(
$controller->getUrl($myNewUrl)
);
}
...
P.S: Your code is Magento 1 mixed with Magento 2, you should use Magento 2 way.
add a comment |
You have to use "ActionFlag" and set a NO_DISPATCH. Using exit is not recommended
:
<?php
...
use MagentoFrameworkAppActionFlag;
...
class MyObserver implements ObserverInterface
{
...
protected $actionFlag;
...
public function __construct(
...
ActionFlag $actionFlag
) {
...
$this->actionFlag = $actionFlag;
}
public function execute(Observer $observer)
{
$this->actionFlag->set('', MagentoFrameworkAppActionAction::FLAG_NO_DISPATCH, true);
$controller->getResponse()->setRedirect(
$controller->getUrl($myNewUrl)
);
}
...
P.S: Your code is Magento 1 mixed with Magento 2, you should use Magento 2 way.
You have to use "ActionFlag" and set a NO_DISPATCH. Using exit is not recommended
:
<?php
...
use MagentoFrameworkAppActionFlag;
...
class MyObserver implements ObserverInterface
{
...
protected $actionFlag;
...
public function __construct(
...
ActionFlag $actionFlag
) {
...
$this->actionFlag = $actionFlag;
}
public function execute(Observer $observer)
{
$this->actionFlag->set('', MagentoFrameworkAppActionAction::FLAG_NO_DISPATCH, true);
$controller->getResponse()->setRedirect(
$controller->getUrl($myNewUrl)
);
}
...
P.S: Your code is Magento 1 mixed with Magento 2, you should use Magento 2 way.
answered Jun 23 '16 at 13:20
Phoenix128_RiccardoTPhoenix128_RiccardoT
5,30021230
5,30021230
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f111204%2fmagento-2-issue-with-event-observer-help-needed%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You've copied a little too much from that Magento 1 snippet: there's no
Mage::app()
in Magento 2. Haven't tried, but I think you can do it by injectingMagentoFrameworkAppResponseHttp
in your observer, and setting the redirect URL in that, then exiting.– nevvermind
Apr 18 '16 at 0:15