AdminPageFrameworkLoader_AdminPage_Tool_Generator_Generator::_replyToModifyPathInArchive PHP Метод

_replyToModifyPathInArchive() публичный Метод

Return an empty string to drop the item.
С версии: 3.5.4
public _replyToModifyPathInArchive ( string $sPathInArchive ) : string
$sPathInArchive string The internal path of the archive including the parsing file name.
Результат string
    public function _replyToModifyPathInArchive($sPathInArchive)
    {
        // Check if it belongs to selected components.
        if (false === $this->_isAllowedArchivePath($sPathInArchive)) {
            return '';
            // empty value will drop the entry
        }
        return $sPathInArchive;
    }