I want to add additional features to the Import Module, but what I am wondering is what would be the easiest way to do this? I want to be able to import Assets, Projects, Tasks, etc should I just copy code from Import Module and created something brand new or is there a way I can extend existing code?
class Premium_Import extends Module {
private $col_names;
private $col_flip_names;
private $col_labels;
private $col_required;
private $is_date;
private $data;
}
Like
class Extra_Import extends Premium_Import {
public function upload_projects($file, $oryginal_file, $vals) {
...
}
}
?
I am trying to follow http://epesi.org/index.php?title=Epesi_ ... ng_modules the best I can