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

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

Generates output for SQL defintions of routines
private _exportRoutines ( string $db, string $type, string $dbitype ) : string
$db string Database name
$type string Item type to be used in XML output
$dbitype string Item type used in DBI qieries
Результат string XML with definitions
    private function _exportRoutines($db, $type, $dbitype)
    {
        // Export routines
        $routines = $GLOBALS['dbi']->getProceduresOrFunctions($db, $dbitype);
        return $this->_exportDefinitions($db, $type, $dbitype, $routines);
    }