Add new Action to a existing Magento route - Magento2Magento 2 create custom block and phtml in...

Personal Teleportation as a Weapon

How does residential electricity work?

Short story about space worker geeks who zone out by 'listening' to radiation from stars

Hostile work environment after whistle-blowing on coworker and our boss. What do I do?

Applicability of Single Responsibility Principle

Is there a good way to store credentials outside of a password manager?

Do I need a multiple entry visa for a trip UK -> Sweden -> UK?

What defines a dissertation?

What is the intuitive meaning of having a linear relationship between the logs of two variables?

What will be the benefits of Brexit?

There is only s̶i̶x̶t̶y one place he can be

Opposite of a diet

Implement the Thanos sorting algorithm

Should my PhD thesis be submitted under my legal name?

Is a roofing delivery truck likely to crack my driveway slab?

Curses work by shouting - How to avoid collateral damage?

I'm in charge of equipment buying but no one's ever happy with what I choose. How to fix this?

voltage of sounds of mp3files

What is the oldest known work of fiction?

Go Pregnant or Go Home

The plural of 'stomach"

Was Spock the First Vulcan in Starfleet?

Modify casing of marked letters

Teaching indefinite integrals that require special-casing



Add new Action to a existing Magento route - Magento2


Magento 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













4















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





























    4















    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



























      4












      4








      4


      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

      236211




      236211






















          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": {
          "php": "~5.5.0|~5.6.0|~7.0.0",
          "amasty/base": "*"
          },
          "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": {
          "php": "~5.5.0|~5.6.0|~7.0.0",
          "amasty/base": "*"
          },
          "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": {
          "php": "~5.5.0|~5.6.0|~7.0.0",
          "amasty/base": "*"
          },
          "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": {
          "php": "~5.5.0|~5.6.0|~7.0.0",
          "amasty/base": "*"
          },
          "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": {
          "php": "~5.5.0|~5.6.0|~7.0.0",
          "amasty/base": "*"
          },
          "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 13 mins ago









          AleGrinGo

          236211




          236211










          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

          “%fieldName is a required field.”, in Magento2 REST API Call for GET Method Type The Next...

          How to change City field to a dropdown in Checkout step Magento 2Magento 2 : How to change UI field(s)...

          夢乃愛華...