Overriding a core single page

Permalink
Is it possible to override a core single page from a package?

adz
 
ronyDdeveloper replied on at Permalink Reply
ronyDdeveloper
Yes this can be done.
public function on_start() {   
   $objEnv = Environment::get();
   $objEnv->overrideCoreByPackage('path/to/filename.php', $this);
}


Rony
adz replied on at Permalink Reply
adz
So that would work if I were trying to extend the file manager core files?

Cheers Rony, will try this later.