Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories

Register::delete_by_id()publicWC 1.0

Delete the approved directory identitied by the supplied ID.

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

Хуков нет.

Возвращает

true|false.

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

$Register = new Register();
$Register->delete_by_id( $id ): bool;
$id(int) (обязательный)
The ID of the rule to be deleted.

Код Register::delete_by_id() WC 8.7.0

public function delete_by_id( int $id ): bool {
	global $wpdb;
	$table = $this->get_table();

	return (bool) $wpdb->delete( $table, array( 'url_id' => $id ) );
}