View Single Post
  #2  
Old 05-30-2018, 02:33 AM
  tony_sologubov's Avatar 
tony_sologubov tony_sologubov is offline
 

X-Cart team
  
Join Date: Jan 2009
Posts: 2,431
 

Default Re: Extend module's layout.

Quote:
Originally Posted by Soptareanu @Alex
I want to change some logic from product\details\stock\body.twig layout.
For that task, I decorate \XLite\View\Product\Details\Customer\Stock class and I override the getDefaultTemplate() method.
PHP Code:
protected function getDefaultTemplate()
    {
        return 
'modules/XGhosty/Disponibility/product/details/stock/body.twig';
    } 
It works very fine. But still it is a problem. I have install Backorder Module. This module also extands product\details\stock\body.twig layout. If this module is active the runner goes to the layout found in QSL\Backorder... and ignore the implementation of my module. How can i deal with such situation ?!

You can make your module to be placed after QSL/Backorder in decoration chain as explained here:
https://devs.x-cart.com/basics/making_one_module_depend_on_another_one_--_creating_a_menu_in_the_customer_area.html

This way you will be in control of final version of the class.
__________________
Found a bug in X-Cart? Post it to our bug tracker!
Know how to make X-Cart better? Suggest an idea!
Reply With Quote