Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories
Register::disable_by_id()
Disable the approved directory identitied by the supplied ID.
Method of the class: Register{}
No Hooks.
Return
true|false
.
Usage
$Register = new Register(); $Register->disable_by_id( $id ): bool;
- $id(int) (required)
- The ID of the rule to be deleted.
Register::disable_by_id() Register::disable by id code WC 9.3.3
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 ) ); }