ActionScheduler_Abstract_Schema::get_full_table_name()protectedWC 1.0

Метод класса: ActionScheduler_Abstract_Schema{}

Хуков нет.

Возвращает

Строку. The full name of the table, including the table prefix for the current blog

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->get_full_table_name( $table );
$table(строка) (обязательный)
-

Код ActionScheduler_Abstract_Schema::get_full_table_name() WC 8.7.0

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