Yoast\WP\Lib\Migrations
Adapter::has_table() public Yoast 1.0
Checks if a table exists.
{} Это метод класса: Adapter{}
Хуков нет.
Возвращает
true/false.
Использование
$Adapter = new Adapter(); $Adapter->has_table( $table );
- $table(строка) (обязательный)
- The table name.
Код Adapter::has_table() Adapter::has table Yoast 15.9
public function has_table( $table ) {
return $this->table_exists( $table );
}