wpmdb_backup_header_is_subsite_export

wpmdb_backup_header_is_subsite_export

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wp-migrate-db.2.6.9

apply_filters('wpmdb_backup_header_is_subsite_export') is found 1 times:

  • /class/Common/Sql/Table.php line 1983
     
            $is_multisite = is_multisite() ? 'true' : 'false';
            $this->stow('# Multisite: ' . $is_multisite . "\n", false, $fp);
    
            $is_subsite_export = apply_filters('wpmdb_backup_header_is_subsite_export', 'false');
            $this->stow('# Subsite Export: ' . $is_subsite_export . "\n", false, $fp);
    
            $this->stow("# --------------------------------------------------------\n\n", false, $fp);
            $this->stow("/*!40101 SET NAMES $charset */;\n\n", false, $fp);
            $this->stow("SET sql_mode='NO_AUTO_VALUE_ON_ZERO';\n\n", false, $fp);
        }