correct the name of the editors-xtd group plugins class
editors-xtd group plugins class name must have a (plgButton<PluginName>) structure, but JCB creates the names of these classes with (plg<PluginGroup><PluginName>) structure, which makes this type of plugins not work
This commit is contained in:
@ -10149,9 +10149,7 @@ class Get
|
||||
// set lang prefix
|
||||
$plugin->lang_prefix = $this->langPrefix;
|
||||
// set plugin class name
|
||||
$plugin->class_name = 'Plg' . ucfirst($plugin->group) . ucfirst(
|
||||
$plugin->code_name
|
||||
);
|
||||
$plugin->class_name = ComponentbuilderHelper::createPluginClassName($plugin->group, $plugin->code_name);
|
||||
// set plugin install class name
|
||||
$plugin->installer_class_name = 'plg' . ucfirst($plugin->group)
|
||||
. ucfirst($plugin->code_name) . 'InstallerScript';
|
||||
|
Reference in New Issue
Block a user