PMA\libraries\plugins\export\ExportXml::exportDBFooter PHP Метод

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

Outputs database footer
public exportDBFooter ( string $db ) : boolean
$db string Database name
Результат boolean Whether it succeeded
    public function exportDBFooter($db)
    {
        global $crlf;
        if (isset($GLOBALS['xml_export_contents']) && $GLOBALS['xml_export_contents']) {
            return PMA_exportOutputHandler('    </database>' . $crlf);
        } else {
            return true;
        }
    }