WC_REST_System_Status_V2_Controller::add_db_table_prefix()protectedWC 1.0

Add prefix to table.

Method of the class: WC_REST_System_Status_V2_Controller{}

No Hooks.

Return

stromg.

Usage

// protected - for code of main (parent) or child class
$result = $this->add_db_table_prefix( $table );
$table(string) (required)
Table name.

WC_REST_System_Status_V2_Controller::add_db_table_prefix() code WC 8.7.0

protected function add_db_table_prefix( $table ) {
	global $wpdb;
	return $wpdb->prefix . $table;
}