Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
BBP_Converter::maybe_restart()
Maybe restart the converter
Description Description
Source Source
File: includes/admin/classes/class-bbp-converter.php
private function maybe_restart() { // Save step and count so that it can be restarted. if ( ! get_option( '_bbp_converter_step' ) || ! empty( $_POST['_bbp_converter_restart'] ) ) { $this->step = 1; $this->start = 0; $this->step_percentage = 0; $this->total_percentage = 0; $this->rows_in_step = 0; $this->maybe_update_options(); } }
Changelog Changelog
Version | Description |
---|---|
2.6.0 | Introduced. |