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);
    }