X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fregistration%2FExtensionRegistry.php;h=858f3bfe2c0eb248e9275dac6f9b3b3533e71937;hb=daf86edd327f1993bc7f7fd527553ad62ff9a489;hp=d48a1bd26e787c4d9242a353e678013858566dd0;hpb=f873b499650ef5d27570f9cb96d01d1477f9e089;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/registration/ExtensionRegistry.php b/includes/registration/ExtensionRegistry.php index d48a1bd26e..858f3bfe2c 100644 --- a/includes/registration/ExtensionRegistry.php +++ b/includes/registration/ExtensionRegistry.php @@ -118,6 +118,24 @@ class ExtensionRegistry { $this->queued = array(); } + /** + * Get the current load queue. Not intended to be used + * outside of the installer. + * + * @return array + */ + public function getQueue() { + return $this->queued; + } + + /** + * Clear the current load queue. Not intended to be used + * outside of the installer. + */ + public function clearQueue() { + $this->queued = array(); + } + /** * Process a queue of extensions and return their extracted data *