How to extend classes in purchased product (Multis

2019-08-27 00:36发布

I hope my question is specific enough, even though most of you may be unfamiliar with Multiscraper (MS), you are probably familiar with Codeigniter (CI).

MS is basically built on CI 2.1.3, and is a webpage scraper for various shopping carts.

I will give a specific example of a class I want to extend. e.g.

file path:

multiscraper\application\controllers\opencart\process.php

class:

class Process extends CI_Controller {
 ... 
}

So, why do I want to extend this class? Because I have modifications and additions I want to make to improve functionality.

Why do I not make these changes in the same file? Because the developers of the product post updates to their product which may offer improvements. If I start modifying the original files directly, it will become very difficult to manage these updates when they arrive. I am hoping for a way to extend these classes with only the functions I want to improve upon. Since they will be in separate files, then it will be much easier to debug and fix things after an update.

So I was hoping to create a :

file path:

multiscraper\application\controllers\opencart\process_custom.php
or 
multiscraper\application\controllers\process_custom.php

class:

class Process_custom extends Process {
    function __construct(){
         parent::__construct();

    }
    function_to_replace {

    }
}

Unfortunately neither locations worked for me.

NOTE: bear in mind that I should not modify the original names of the classes or the filenames of the original files. I can only use my own class names and file names in the new files which I create.

Can anyone help me out here?

Thanks in advance.

0条回答
登录 后发表回答