Contao\Controller::findFrontendModule PHP Метод

findFrontendModule() публичный статический Метод

Find a front end module in the FE_MOD array and return the class name
Устаревший: Deprecated since Contao 4.0, to be removed in Contao 5.0. Use Module::findClass() instead.
public static findFrontendModule ( string $strName ) : string
$strName string The front end module name
Результат string The class name
    public static function findFrontendModule($strName)
    {
        @trigger_error('Using Controller::findFrontendModule() has been deprecated and will no longer work in Contao 5.0. Use Module::findClass() instead.', E_USER_DEPRECATED);
        return \Module::findClass($strName);
    }