ActionScheduler_Abstract_Schema::get_full_table_name()protectedWC 1.0

Method of the class: ActionScheduler_Abstract_Schema{}

No Hooks.

Return

String. The full name of the table, including the table prefix for the current blog

Usage

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

ActionScheduler_Abstract_Schema::get_full_table_name() code WC 8.7.0

protected function get_full_table_name( $table ) {
	return $GLOBALS['wpdb']->prefix . $table;
}