wpmdb_cli_progress_label

wpmdb_cli_progress_label

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

See hook in core

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

apply_filters('wpmdb_cli_progress_label') is found 1 times:

  • /class/Common/Cli/Cli.php line 431
    				$progress_label = __('Performing backup', 'wp-migrate-db-cli');
    			}
    		}
    
    		$progress_label = apply_filters('wpmdb_cli_progress_label', $progress_label, $stage, $tables);
    
    		$progress_label = str_pad($progress_label, 20, ' ');
    
    		$count = $this->get_total_rows_from_table_list($tables, $stage);
    
    		return \WP_CLI\Utils\make_progress_bar($progress_label, $count);