Automattic\WooCommerce\Internal\ProductDownloads\ApprovedDirectories
Register::delete_by_id
Delete the approved directory identitied by the supplied ID.
Method of the class: Register{}
No Hooks.
Returns
true|false.
Usage
$Register = new Register(); $Register->delete_by_id( $id ): bool;
- $id(int) (required)
- The ID of the rule to be deleted.
Register::delete_by_id() Register::delete by id code WC 10.8.1
public function delete_by_id( int $id ): bool {
global $wpdb;
if ( ! $wpdb->delete( $this->get_table(), array( 'url_id' => $id ) ) ) {
return false;
}
unset( $this->cache );
return true;
}