ActionScheduler_Abstract_Schema::get_full_table_name()
Метод класса: 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() ActionScheduler Abstract Schema::get full table name WC 9.2.3
protected function get_full_table_name( $table ) { return $GLOBALS['wpdb']->prefix . $table; }