Piwik\Plugin::reloadPluginInformation PHP Метод

reloadPluginInformation() публичный Метод

    public function reloadPluginInformation()
    {
        $metadataLoader = new MetadataLoader($this->pluginName);
        $this->pluginInformation = $metadataLoader->load();
        if ($this->hasDefinedPluginInformationInPluginClass() && $metadataLoader->hasPluginJson()) {
            throw new \Exception('Plugin ' . $this->pluginName . ' has defined the method getInformation() and as well as having a plugin.json file. Please delete the getInformation() method from the plugin class. Alternatively, you may delete the plugin directory from plugins/' . $this->pluginName);
        }
    }