ActionScheduler_Abstract_Schema::get_full_table_name
Get full table name.
Method of the class: ActionScheduler_Abstract_Schema{}
No Hooks.
Returns
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)
- Table name.
ActionScheduler_Abstract_Schema::get_full_table_name() ActionScheduler Abstract Schema::get full table name code WC 10.3.3
protected function get_full_table_name( $table ) {
return $GLOBALS['wpdb']->prefix . $table;
}