Back to PluginAdapter class

Method getScriptClassName

protected string
getScriptClassName
()
Get the class name for the install adapter script.
Returns
  • string The class name.
Since
  • 3.4
Class: PluginAdapter
Project: Joomla

Method getScriptClassName - Source code

/**
 * Get the class name for the install adapter script.
 *
 * @return  string  The class name.
 *
 * @since   3.4
 */
protected function getScriptClassName()
{
    return 'Plg' . str_replace('-', '', $this->group) . $this->element . 'InstallerScript';
}