Add new Action to a existing Magento route - Magento2 The Next CEO of Stack OverflowMagento 2 create custom block and phtml in Magento_Customer moduleWhere in a custom module can you declare / consolidate all of your custom functionsMagento2 InstallSchema add new column to existing tableMagento2 adding dynamic route nameCustom Contact Form - Override ControllerUse existing PHP, HTML, and JavaScript based website in the same structure, but use Magento 2.1 Functions and tools such as accounts and CartsMy New Route Is Not WorkingAdd new action in cartController.php in magento 1.9Add new action to existing module, routingHow to get selected Order Ids in block from Sales Order Grid? Magento2redirect vers url (route/controller/action) from phtml magento 2

Is it a good idea to use COLUMN AS (left([Another_Column],(4)) instead of LEFT in the select?

Apart from "berlinern", do any other German dialects have a corresponding verb?

Customer Requests (Sometimes) Drive Me Bonkers!

How can I open an app using Terminal?

Grabbing quick drinks

Unreliable Magic - Is it worth it?

How can I get through very long and very dry, but also very useful technical documents when learning a new tool?

What do "high sea" and "carry" mean in this sentence?

Does it take more energy to get to Venus or to Mars?

% symbol leads to superlong (forever?) compilations

How do we know the LHC results are robust?

Anatomically Correct Strange Women In Ponds Distributing Swords

How to Reset Passwords on Multiple Websites Easily?

How should I support this large drywall patch?

How easy is it to start Magic from scratch?

MAZDA 3 2006 (UK) - poor acceleration then takes off at 3250 revs

Why do remote companies require working in the US?

How do I solve this limit?

Why did we only see the N-1 starfighters in one film?

Increase performance creating Mandelbrot set in python

Science fiction novels about a solar system spanning civilisation where people change their bodies at will

Why does GHC infer a monomorphic type here, even with MonomorphismRestriction disabled?

How to safely derail a train during transit?

How to write papers efficiently when English isn't my first language?



Add new Action to a existing Magento route - Magento2



The Next CEO of Stack OverflowMagento 2 create custom block and phtml in Magento_Customer moduleWhere in a custom module can you declare / consolidate all of your custom functionsMagento2 InstallSchema add new column to existing tableMagento2 adding dynamic route nameCustom Contact Form - Override ControllerUse existing PHP, HTML, and JavaScript based website in the same structure, but use Magento 2.1 Functions and tools such as accounts and CartsMy New Route Is Not WorkingAdd new action in cartController.php in magento 1.9Add new action to existing module, routingHow to get selected Order Ids in block from Sales Order Grid? Magento2redirect vers url (route/controller/action) from phtml magento 2










5















Hello guys how are you?,



Here is my scenario, I want to add a new Action to an existing Magento route, what this mean, for example under the MyAccount section you can find /sales/order/[view, history, etc] right? I want to add a index like a a Order section dashboard.



I try to implement this solution:
https://stackoverflow.com/questions/34908125/magento-2-controller-post-throwing-404-error
without lucky.



Any suggestion?










share|improve this question




























    5















    Hello guys how are you?,



    Here is my scenario, I want to add a new Action to an existing Magento route, what this mean, for example under the MyAccount section you can find /sales/order/[view, history, etc] right? I want to add a index like a a Order section dashboard.



    I try to implement this solution:
    https://stackoverflow.com/questions/34908125/magento-2-controller-post-throwing-404-error
    without lucky.



    Any suggestion?










    share|improve this question


























      5












      5








      5


      1






      Hello guys how are you?,



      Here is my scenario, I want to add a new Action to an existing Magento route, what this mean, for example under the MyAccount section you can find /sales/order/[view, history, etc] right? I want to add a index like a a Order section dashboard.



      I try to implement this solution:
      https://stackoverflow.com/questions/34908125/magento-2-controller-post-throwing-404-error
      without lucky.



      Any suggestion?










      share|improve this question
















      Hello guys how are you?,



      Here is my scenario, I want to add a new Action to an existing Magento route, what this mean, for example under the MyAccount section you can find /sales/order/[view, history, etc] right? I want to add a index like a a Order section dashboard.



      I try to implement this solution:
      https://stackoverflow.com/questions/34908125/magento-2-controller-post-throwing-404-error
      without lucky.



      Any suggestion?







      magento2 controllers






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited May 23 '17 at 12:37









      Community

      1




      1










      asked Jun 10 '16 at 13:49









      AleGrinGoAleGrinGo

      241212




      241212




















          1 Answer
          1






          active

          oldest

          votes


















          8














          So, you need to create a custom extension with the following file structure (for example adding new action to checkout/cart/):



          Add action extension structure.



          We need the following files to make it work:



          1) registration.php



          <?php
          MagentoFrameworkComponentComponentRegistrar::register(
          MagentoFrameworkComponentComponentRegistrar::MODULE,
          'Amasty_Checkout',
          __DIR__
          );


          2) composer.json




          "name": "amasty/checkout",
          "description": "Amasty Test",
          "require": ~5.6.0,
          "type": "magento2-module",
          "version": "1.0.0",
          "license": [
          "Commercial"
          ],
          "autoload":
          "files": [ "registration.php" ],
          "psr-4":
          "Amasty\Checkout\": ""





          3) module.xml



          <?xml version="1.0"?>
          <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
          <module name="Amasty_Checkout" schema_version="1.0.0" setup_version="1.0.0">
          <sequence>
          <module name="Magento_Checkout"/>
          </sequence>
          </module>




          4) routes.xml



          <?xml version="1.0"?>
          <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
          <router id="standard">
          <route id="checkout">
          <module name="Amasty_Checkout" />
          </route>
          </router>
          </config>


          5) Test.php (adding /test/ action)



          <?php
          namespace AmastyCheckoutControllerCart;

          class Test extends MagentoCheckoutControllerCartAdd


          public function execute()

          die('asdasdasd');




          And this is the result:



          Test action result.






          share|improve this answer

























          • thank you so much for the answer. I didn't have time to check the fix yet. I'll let you now how was

            – AleGrinGo
            Jun 23 '16 at 3:11












          • @Amasty, I want to add new custom tab for customer account.Could you please guide how I can do this?

            – mageDev0688
            May 15 '17 at 11:13











          • @Amasty in routes.xml file you have to specify only id attribute of route node, and you are strongly advised to use a before or after tag's attribute to control the order Magento will check for matches in, to avoid accidental overrides of existing core controllers

            – Cristiano Casciotti
            Jul 12 '17 at 10:04












          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
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f120389%2fadd-new-action-to-a-existing-magento-route-magento2%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









          8














          So, you need to create a custom extension with the following file structure (for example adding new action to checkout/cart/):



          Add action extension structure.



          We need the following files to make it work:



          1) registration.php



          <?php
          MagentoFrameworkComponentComponentRegistrar::register(
          MagentoFrameworkComponentComponentRegistrar::MODULE,
          'Amasty_Checkout',
          __DIR__
          );


          2) composer.json




          "name": "amasty/checkout",
          "description": "Amasty Test",
          "require": ~5.6.0,
          "type": "magento2-module",
          "version": "1.0.0",
          "license": [
          "Commercial"
          ],
          "autoload":
          "files": [ "registration.php" ],
          "psr-4":
          "Amasty\Checkout\": ""





          3) module.xml



          <?xml version="1.0"?>
          <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
          <module name="Amasty_Checkout" schema_version="1.0.0" setup_version="1.0.0">
          <sequence>
          <module name="Magento_Checkout"/>
          </sequence>
          </module>




          4) routes.xml



          <?xml version="1.0"?>
          <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
          <router id="standard">
          <route id="checkout">
          <module name="Amasty_Checkout" />
          </route>
          </router>
          </config>


          5) Test.php (adding /test/ action)



          <?php
          namespace AmastyCheckoutControllerCart;

          class Test extends MagentoCheckoutControllerCartAdd


          public function execute()

          die('asdasdasd');




          And this is the result:



          Test action result.






          share|improve this answer

























          • thank you so much for the answer. I didn't have time to check the fix yet. I'll let you now how was

            – AleGrinGo
            Jun 23 '16 at 3:11












          • @Amasty, I want to add new custom tab for customer account.Could you please guide how I can do this?

            – mageDev0688
            May 15 '17 at 11:13











          • @Amasty in routes.xml file you have to specify only id attribute of route node, and you are strongly advised to use a before or after tag's attribute to control the order Magento will check for matches in, to avoid accidental overrides of existing core controllers

            – Cristiano Casciotti
            Jul 12 '17 at 10:04
















          8














          So, you need to create a custom extension with the following file structure (for example adding new action to checkout/cart/):



          Add action extension structure.



          We need the following files to make it work:



          1) registration.php



          <?php
          MagentoFrameworkComponentComponentRegistrar::register(
          MagentoFrameworkComponentComponentRegistrar::MODULE,
          'Amasty_Checkout',
          __DIR__
          );


          2) composer.json




          "name": "amasty/checkout",
          "description": "Amasty Test",
          "require": ~5.6.0,
          "type": "magento2-module",
          "version": "1.0.0",
          "license": [
          "Commercial"
          ],
          "autoload":
          "files": [ "registration.php" ],
          "psr-4":
          "Amasty\Checkout\": ""





          3) module.xml



          <?xml version="1.0"?>
          <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
          <module name="Amasty_Checkout" schema_version="1.0.0" setup_version="1.0.0">
          <sequence>
          <module name="Magento_Checkout"/>
          </sequence>
          </module>




          4) routes.xml



          <?xml version="1.0"?>
          <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
          <router id="standard">
          <route id="checkout">
          <module name="Amasty_Checkout" />
          </route>
          </router>
          </config>


          5) Test.php (adding /test/ action)



          <?php
          namespace AmastyCheckoutControllerCart;

          class Test extends MagentoCheckoutControllerCartAdd


          public function execute()

          die('asdasdasd');




          And this is the result:



          Test action result.






          share|improve this answer

























          • thank you so much for the answer. I didn't have time to check the fix yet. I'll let you now how was

            – AleGrinGo
            Jun 23 '16 at 3:11












          • @Amasty, I want to add new custom tab for customer account.Could you please guide how I can do this?

            – mageDev0688
            May 15 '17 at 11:13











          • @Amasty in routes.xml file you have to specify only id attribute of route node, and you are strongly advised to use a before or after tag's attribute to control the order Magento will check for matches in, to avoid accidental overrides of existing core controllers

            – Cristiano Casciotti
            Jul 12 '17 at 10:04














          8












          8








          8







          So, you need to create a custom extension with the following file structure (for example adding new action to checkout/cart/):



          Add action extension structure.



          We need the following files to make it work:



          1) registration.php



          <?php
          MagentoFrameworkComponentComponentRegistrar::register(
          MagentoFrameworkComponentComponentRegistrar::MODULE,
          'Amasty_Checkout',
          __DIR__
          );


          2) composer.json




          "name": "amasty/checkout",
          "description": "Amasty Test",
          "require": ~5.6.0,
          "type": "magento2-module",
          "version": "1.0.0",
          "license": [
          "Commercial"
          ],
          "autoload":
          "files": [ "registration.php" ],
          "psr-4":
          "Amasty\Checkout\": ""





          3) module.xml



          <?xml version="1.0"?>
          <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
          <module name="Amasty_Checkout" schema_version="1.0.0" setup_version="1.0.0">
          <sequence>
          <module name="Magento_Checkout"/>
          </sequence>
          </module>




          4) routes.xml



          <?xml version="1.0"?>
          <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
          <router id="standard">
          <route id="checkout">
          <module name="Amasty_Checkout" />
          </route>
          </router>
          </config>


          5) Test.php (adding /test/ action)



          <?php
          namespace AmastyCheckoutControllerCart;

          class Test extends MagentoCheckoutControllerCartAdd


          public function execute()

          die('asdasdasd');




          And this is the result:



          Test action result.






          share|improve this answer















          So, you need to create a custom extension with the following file structure (for example adding new action to checkout/cart/):



          Add action extension structure.



          We need the following files to make it work:



          1) registration.php



          <?php
          MagentoFrameworkComponentComponentRegistrar::register(
          MagentoFrameworkComponentComponentRegistrar::MODULE,
          'Amasty_Checkout',
          __DIR__
          );


          2) composer.json




          "name": "amasty/checkout",
          "description": "Amasty Test",
          "require": ~5.6.0,
          "type": "magento2-module",
          "version": "1.0.0",
          "license": [
          "Commercial"
          ],
          "autoload":
          "files": [ "registration.php" ],
          "psr-4":
          "Amasty\Checkout\": ""





          3) module.xml



          <?xml version="1.0"?>
          <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
          <module name="Amasty_Checkout" schema_version="1.0.0" setup_version="1.0.0">
          <sequence>
          <module name="Magento_Checkout"/>
          </sequence>
          </module>




          4) routes.xml



          <?xml version="1.0"?>
          <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
          <router id="standard">
          <route id="checkout">
          <module name="Amasty_Checkout" />
          </route>
          </router>
          </config>


          5) Test.php (adding /test/ action)



          <?php
          namespace AmastyCheckoutControllerCart;

          class Test extends MagentoCheckoutControllerCartAdd


          public function execute()

          die('asdasdasd');




          And this is the result:



          Test action result.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited yesterday









          AleGrinGo

          241212




          241212










          answered Jun 17 '16 at 9:02









          AmastyAmasty

          6,16211354




          6,16211354












          • thank you so much for the answer. I didn't have time to check the fix yet. I'll let you now how was

            – AleGrinGo
            Jun 23 '16 at 3:11












          • @Amasty, I want to add new custom tab for customer account.Could you please guide how I can do this?

            – mageDev0688
            May 15 '17 at 11:13











          • @Amasty in routes.xml file you have to specify only id attribute of route node, and you are strongly advised to use a before or after tag's attribute to control the order Magento will check for matches in, to avoid accidental overrides of existing core controllers

            – Cristiano Casciotti
            Jul 12 '17 at 10:04


















          • thank you so much for the answer. I didn't have time to check the fix yet. I'll let you now how was

            – AleGrinGo
            Jun 23 '16 at 3:11












          • @Amasty, I want to add new custom tab for customer account.Could you please guide how I can do this?

            – mageDev0688
            May 15 '17 at 11:13











          • @Amasty in routes.xml file you have to specify only id attribute of route node, and you are strongly advised to use a before or after tag's attribute to control the order Magento will check for matches in, to avoid accidental overrides of existing core controllers

            – Cristiano Casciotti
            Jul 12 '17 at 10:04

















          thank you so much for the answer. I didn't have time to check the fix yet. I'll let you now how was

          – AleGrinGo
          Jun 23 '16 at 3:11






          thank you so much for the answer. I didn't have time to check the fix yet. I'll let you now how was

          – AleGrinGo
          Jun 23 '16 at 3:11














          @Amasty, I want to add new custom tab for customer account.Could you please guide how I can do this?

          – mageDev0688
          May 15 '17 at 11:13





          @Amasty, I want to add new custom tab for customer account.Could you please guide how I can do this?

          – mageDev0688
          May 15 '17 at 11:13













          @Amasty in routes.xml file you have to specify only id attribute of route node, and you are strongly advised to use a before or after tag's attribute to control the order Magento will check for matches in, to avoid accidental overrides of existing core controllers

          – Cristiano Casciotti
          Jul 12 '17 at 10:04






          @Amasty in routes.xml file you have to specify only id attribute of route node, and you are strongly advised to use a before or after tag's attribute to control the order Magento will check for matches in, to avoid accidental overrides of existing core controllers

          – Cristiano Casciotti
          Jul 12 '17 at 10:04


















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f120389%2fadd-new-action-to-a-existing-magento-route-magento2%23new-answer', 'question_page');

          );

          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







          Popular posts from this blog

          Sum ergo cogito? 1 nng

          419 nièngy_Soadمي 19bal1.5o_g

          Queiggey Chernihivv 9NnOo i Zw X QqKk LpB