Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories
Register::disable_by_id
Disable the approved directory identitied by the supplied ID.
Метод класса: Register{}
Хуков нет.
Возвращает
true|false.
Использование
$Register = new Register(); $Register->disable_by_id( $id ): bool;
- $id(int) (обязательный)
- The ID of the rule to be deleted.
Код Register::disable_by_id() Register::disable by id WC 10.3.4
public function disable_by_id( int $id ): bool {
global $wpdb;
$table = $this->get_table();
return (bool) $wpdb->update( $table, array( 'enabled' => 0 ), array( 'url_id' => $id ) );
}