Legacy_Upgrades::get_full_table_name( string $table_name )

Creates a full database table name for an unprefixed table name.

Description

See also

Parameters

$table_name

(string) (Required) Unprefixed table name.

Return

(string) Full table name.

Source

File: src/components/legacy-upgrades.php

	protected function get_full_table_name( $table_name ) {
		global $wpdb;

		return $wpdb->prefix . $this->get_prefix() . $table_name;
	}

Changelog

Changelog
Version Description
1.0.0 Introduced.