AdminPageFrameworkLoader_AdminPage_Tool_Generator_Generator::_getFormSubmitValueByFieldIDAsString PHP Метод

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

Retrieves the value from the $_POST array by the given field ID.
С версии: 3.5.4
private _getFormSubmitValueByFieldIDAsString ( $sFieldID ) : string
Результат string
    private function _getFormSubmitValueByFieldIDAsString($sFieldID)
    {
        static $_aCaches = array();
        $_aCaches[$sFieldID] = isset($_aCaches[$sFieldID]) ? $_aCaches[$sFieldID] : $this->oFactory->oUtil->getElement($_POST, array($this->oFactory->oProp->sOptionKey, $this->sSectionID, $sFieldID), '');
        return trim((string) $_aCaches[$sFieldID]);
    }