Guest User

Untitled

a guest
Jul 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. <?php
  2. MagentoFrameworkComponentComponentRegistrar::register(
  3. MagentoFrameworkComponentComponentRegistrar::MODULE,
  4. 'vendor_modulename',
  5. __DIR__
  6. );
  7.  
  8. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd">
  9. <preference for="MagentoSalesBlockAdminhtmlOrderCreate" type="vendormodulenameBlockAdminhtmlOrderCreate" />
  10. </config>
  11.  
  12. <?xml version="1.0"?>
  13. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
  14. <module name="vendor_modulename" setup_version="1.0.0">
  15. <sequence>
  16. <module name="Magento_Sales"/>
  17. </sequence>
  18. </module>
  19. </config>
  20.  
  21. <?xml version="1.0"?>
  22. <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
  23. <body>
  24. <referenceBlock name="order_totals">
  25. <action method="setTemplate">
  26. <argument name="template" translate="true" xsi:type="string">vendor_modulename::order/create/totals.phtml</argument>
  27. </action>
  28. </referenceBlock>
  29. </body>
  30. </page>
Add Comment
Please, Sign In to add comment