简体   繁体   中英

How to extend Joomla 3's component's helper with own class from custom template

I'am working on a custom template, and I came to the point where I have to modify component's helper source code. To prevent that, I'am wondering if there is a corresponding approach to extend specific helper class of some component with own functions, or else override it ?

Introducing the override file within my custom template jmlroot/templates/mytemplate/html/com_hikashop/product/listing_div.php :

<form action="<?php echo hikashop_currentURL(); ?>" method="post" name="adminForm_<?php echo $this->params->get('main_div_name').$this->category_selected;?>_bottom">
    <div class="hikashop_products_pagination hikashop_products_pagination_bottom">
    <?php echo $this->pagination->getListFooter($this->params->get('limit')); ?>
    <span class="hikashop_results_counter"><?php echo $this->pagination->getResultsCounter(); ?></span>
    </div>
    <input type="hidden" name="filter_order_<?php echo $this->params->get('main_div_name').$this->category_selected;?>" value="<?php echo $this->pageInfo->filter->order->value; ?>" />
    <input type="hidden" name="filter_order_Dir_<?php echo $this->params->get('main_div_name').$this->category_selected;?>" value="<?php echo $this->pageInfo->filter->order->dir; ?>" />
    <?php echo JHTML::_( 'form.token' ); ?>
</form>

Inside that form there is a PHP code:

<?php echo $this->pagination->getListFooter($this->params->get('limit')); ?>

Which is called from helper file jmlroot/administrator/components/com_hikashop/helpers/pagination.php :

class hikashopPaginationHelper extends hikashopBridgePaginationHelper{
    function _item_active(JPaginationObject $item){
        $class = 'pagenav';
        $specials = array('start','end','previous','next');
        foreach($specials as $special){
            if(!empty($item->$special)){
                $class.=' hikashop_'.$special.'_link';
            }
        }
        if($item->base>0)
            return "<a class=\"".$class."\" title=\"".$item->text."\" onclick=\"javascript: document.adminForm".$this->hikaSuffix.$this->form.".limitstart".$this->hikaSuffix.".value=".$item->base."; document.adminForm".$this->hikaSuffix.$this->form.".submit();return false;\">".$item->text."</a>";
        else
            return "<a class=\"".$class."\" title=\"".$item->text."\" onclick=\"javascript: document.adminForm".$this->hikaSuffix.$this->form.".limitstart".$this->hikaSuffix.".value=0; document.adminForm".$this->hikaSuffix.$this->form.".submit();return false;\">".$item->text."</a>";
    }
    function _item_inactive(JPaginationObject $item){
        $mainframe = JFactory::getApplication();
        if ($mainframe->isAdmin()) {
            return "<span>".$item->text."</span>";
        } else {
            $class = 'pagenav';
            if(!is_numeric($item->text)){
                $class .= ' pagenav_text';
            }
            return '<span class="'.$class.'">'.$item->text."</span>";
        }
    }
}

And I need to override that class hikashopPaginationHelper with a little bit modified code (by remplacing <spans /> with <li/> .

I tried to add this portion of code into jmlroot/templates/mytemplate/html/com_hikashop/product/listing_div.php at the biggining of the file:

jimport('joomla.application.component.controller');
jimport('joomla.html.pagination');

require_once JPATH_ADMINISTRATOR . '/components/com_hikashop/helpers/pagination.php';

class MY_hikashopPaginationHelper extends hikashopBridgePaginationHelper{
    function _item_active(JPaginationObject $item){
        $class = 'pagenav';
        $specials = array('start','end','previous','next');
        foreach($specials as $special){
            if(!empty($item->$special)){
                $class.=' hikashop_'.$special.'_link';
            }
        }
        if($item->base>0)
            return "<li><a class=\"".$class."\" title=\"".$item->text."\" onclick=\"javascript: document.adminForm".$this->hikaSuffix.$this->form.".limitstart".$this->hikaSuffix.".value=".$item->base."; document.adminForm".$this->hikaSuffix.$this->form.".submit();return false;\">".$item->text."</a></li>";
        else
            return "<li><a class=\"".$class."\" title=\"".$item->text."\" onclick=\"javascript: document.adminForm".$this->hikaSuffix.$this->form.".limitstart".$this->hikaSuffix.".value=0; document.adminForm".$this->hikaSuffix.$this->form.".submit();return false;\">".$item->text."</a></li>";
    }
    function _item_inactive(JPaginationObject $item){
        $mainframe = JFactory::getApplication();
        if ($mainframe->isAdmin()) {
            return "<li>".$item->text."</li>";
        } else {
            $class = 'pagenav';
            if(!is_numeric($item->text)){
                $class .= ' pagenav_text';
            }
            return '<li class="'.$class.'">'.$item->text."</li>";
        }
    }
}

But it doesn't helped a bit. I think there is something I'am doing wrong, anyone remarked something ?

JED上提供了一些可简化此操作的插件,或者您可以实现它们的功能。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM