Magento 2 describe attrubute property used in Plugin method












0















I am trying to create a simple module and I can't find the propose of the attribute name and type inside the tag type and plugin in di.xml.
can anyone describe attribute name used in plugin?



<?xml version="1.0" encoding="UTF-8" ?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<type name="???">
<plugin name="???" type="???" sortOrder="1"/>
</type>
</config>


The documentation is not so clear for a beginner.










share|improve this question





























    0















    I am trying to create a simple module and I can't find the propose of the attribute name and type inside the tag type and plugin in di.xml.
    can anyone describe attribute name used in plugin?



    <?xml version="1.0" encoding="UTF-8" ?>
    <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
    <type name="???">
    <plugin name="???" type="???" sortOrder="1"/>
    </type>
    </config>


    The documentation is not so clear for a beginner.










    share|improve this question



























      0












      0








      0








      I am trying to create a simple module and I can't find the propose of the attribute name and type inside the tag type and plugin in di.xml.
      can anyone describe attribute name used in plugin?



      <?xml version="1.0" encoding="UTF-8" ?>
      <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
      <type name="???">
      <plugin name="???" type="???" sortOrder="1"/>
      </type>
      </config>


      The documentation is not so clear for a beginner.










      share|improve this question
















      I am trying to create a simple module and I can't find the propose of the attribute name and type inside the tag type and plugin in di.xml.
      can anyone describe attribute name used in plugin?



      <?xml version="1.0" encoding="UTF-8" ?>
      <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
      <type name="???">
      <plugin name="???" type="???" sortOrder="1"/>
      </type>
      </config>


      The documentation is not so clear for a beginner.







      xml configuration plugin di around-plugin






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 2 mins ago









      Ketan Borada

      254735




      254735










      asked 2 days ago









      zwitterionzwitterion

      1427




      1427






















          2 Answers
          2






          active

          oldest

          votes


















          1














          <config>
          <type name="{ObservedType}">
          <plugin name="{pluginName}" type="{PluginClassName}" sortOrder="1" disabled="false" />
          </type>
          </config>



          You must specify these elements:






          • ObservedType : A class or interface which the plugin
            observes.(core file path)


          • pluginName : An arbitrary plugin name that identifies a plugin.
            Also used to merge the configurations for the plugin.(you can set any
            unique name )


          • PluginClassName : The name of a plugin’s class or its virtual type.
            Use the following naming convention when you specify this element:
            VendorModulePlugin(extension file path in which you are overriding).






          share|improve this answer































            0














            A small explanation can be found here:




            https://mage2gen.com/snippets/plugin/




            Besides that you can also generate Plugins, see the following example module:




            https://mage2gen.com/load/f268772e-c6b7-4b6d-83fa-b400824817d8




            This example module contains the following di.xml



            <?xml version="1.0" ?>
            <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
            <type name="MagentoCatalogModelProduct">
            <plugin disabled="false" name="Vendor_ModuleName_Plugin_Magento_Catalog_Model_Product" sortOrder="10" type="VendorModuleNamePluginMagentoCatalogModelProduct"/>
            </type>
            </config>





            share|improve this answer























              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%2f260190%2fmagento-2-describe-attrubute-property-used-in-plugin-method%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              1














              <config>
              <type name="{ObservedType}">
              <plugin name="{pluginName}" type="{PluginClassName}" sortOrder="1" disabled="false" />
              </type>
              </config>



              You must specify these elements:






              • ObservedType : A class or interface which the plugin
                observes.(core file path)


              • pluginName : An arbitrary plugin name that identifies a plugin.
                Also used to merge the configurations for the plugin.(you can set any
                unique name )


              • PluginClassName : The name of a plugin’s class or its virtual type.
                Use the following naming convention when you specify this element:
                VendorModulePlugin(extension file path in which you are overriding).






              share|improve this answer




























                1














                <config>
                <type name="{ObservedType}">
                <plugin name="{pluginName}" type="{PluginClassName}" sortOrder="1" disabled="false" />
                </type>
                </config>



                You must specify these elements:






                • ObservedType : A class or interface which the plugin
                  observes.(core file path)


                • pluginName : An arbitrary plugin name that identifies a plugin.
                  Also used to merge the configurations for the plugin.(you can set any
                  unique name )


                • PluginClassName : The name of a plugin’s class or its virtual type.
                  Use the following naming convention when you specify this element:
                  VendorModulePlugin(extension file path in which you are overriding).






                share|improve this answer


























                  1












                  1








                  1







                  <config>
                  <type name="{ObservedType}">
                  <plugin name="{pluginName}" type="{PluginClassName}" sortOrder="1" disabled="false" />
                  </type>
                  </config>



                  You must specify these elements:






                  • ObservedType : A class or interface which the plugin
                    observes.(core file path)


                  • pluginName : An arbitrary plugin name that identifies a plugin.
                    Also used to merge the configurations for the plugin.(you can set any
                    unique name )


                  • PluginClassName : The name of a plugin’s class or its virtual type.
                    Use the following naming convention when you specify this element:
                    VendorModulePlugin(extension file path in which you are overriding).






                  share|improve this answer













                  <config>
                  <type name="{ObservedType}">
                  <plugin name="{pluginName}" type="{PluginClassName}" sortOrder="1" disabled="false" />
                  </type>
                  </config>



                  You must specify these elements:






                  • ObservedType : A class or interface which the plugin
                    observes.(core file path)


                  • pluginName : An arbitrary plugin name that identifies a plugin.
                    Also used to merge the configurations for the plugin.(you can set any
                    unique name )


                  • PluginClassName : The name of a plugin’s class or its virtual type.
                    Use the following naming convention when you specify this element:
                    VendorModulePlugin(extension file path in which you are overriding).







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 2 days ago









                  Ketan BoradaKetan Borada

                  254735




                  254735

























                      0














                      A small explanation can be found here:




                      https://mage2gen.com/snippets/plugin/




                      Besides that you can also generate Plugins, see the following example module:




                      https://mage2gen.com/load/f268772e-c6b7-4b6d-83fa-b400824817d8




                      This example module contains the following di.xml



                      <?xml version="1.0" ?>
                      <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
                      <type name="MagentoCatalogModelProduct">
                      <plugin disabled="false" name="Vendor_ModuleName_Plugin_Magento_Catalog_Model_Product" sortOrder="10" type="VendorModuleNamePluginMagentoCatalogModelProduct"/>
                      </type>
                      </config>





                      share|improve this answer




























                        0














                        A small explanation can be found here:




                        https://mage2gen.com/snippets/plugin/




                        Besides that you can also generate Plugins, see the following example module:




                        https://mage2gen.com/load/f268772e-c6b7-4b6d-83fa-b400824817d8




                        This example module contains the following di.xml



                        <?xml version="1.0" ?>
                        <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
                        <type name="MagentoCatalogModelProduct">
                        <plugin disabled="false" name="Vendor_ModuleName_Plugin_Magento_Catalog_Model_Product" sortOrder="10" type="VendorModuleNamePluginMagentoCatalogModelProduct"/>
                        </type>
                        </config>





                        share|improve this answer


























                          0












                          0








                          0







                          A small explanation can be found here:




                          https://mage2gen.com/snippets/plugin/




                          Besides that you can also generate Plugins, see the following example module:




                          https://mage2gen.com/load/f268772e-c6b7-4b6d-83fa-b400824817d8




                          This example module contains the following di.xml



                          <?xml version="1.0" ?>
                          <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
                          <type name="MagentoCatalogModelProduct">
                          <plugin disabled="false" name="Vendor_ModuleName_Plugin_Magento_Catalog_Model_Product" sortOrder="10" type="VendorModuleNamePluginMagentoCatalogModelProduct"/>
                          </type>
                          </config>





                          share|improve this answer













                          A small explanation can be found here:




                          https://mage2gen.com/snippets/plugin/




                          Besides that you can also generate Plugins, see the following example module:




                          https://mage2gen.com/load/f268772e-c6b7-4b6d-83fa-b400824817d8




                          This example module contains the following di.xml



                          <?xml version="1.0" ?>
                          <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
                          <type name="MagentoCatalogModelProduct">
                          <plugin disabled="false" name="Vendor_ModuleName_Plugin_Magento_Catalog_Model_Product" sortOrder="10" type="VendorModuleNamePluginMagentoCatalogModelProduct"/>
                          </type>
                          </config>






                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered yesterday









                          Mr. LewisMr. Lewis

                          1,233610




                          1,233610






























                              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%2f260190%2fmagento-2-describe-attrubute-property-used-in-plugin-method%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

                              Polycentropodidae

                              Magento 2 Error message: Invalid state change requested

                              Paulmy