AdminPageFrameworkLoader_AdminPage_Tool_Generator_CustomFieldTypes::_getClassNamesPrefixed PHP Метод

_getClassNamesPrefixed() приватный Метод

Modifies the given content by replacing the class names with a prefix.
С версии: 3.8.4
private _getClassNamesPrefixed ( $sFileContents ) : string
Результат string
    private function _getClassNamesPrefixed($sFileContents)
    {
        $_aSelectedFieldTypeClassNames = array_keys($this->_getSelectedCustomFieldTypes($this->aCustomFieldTypes));
        return preg_replace($this->_getClassPrefixRegexPatterns($_aSelectedFieldTypeClassNames), $this->_getClassPrefixRegexReplacements($_aSelectedFieldTypeClassNames), $sFileContents);
    }