/**
  * Delete the WP_Option and the user option of the model.
  *
  * @since 1.0.0
  */
 public function destroy()
 {
     $this->plugin_options->delete();
     $this->user_options->delete_for_all_users();
 }
Beispiel #2
0
 /**
  * Delete the WP_Option of the model.
  *
  * @since 1.0.0
  */
 public function destroy()
 {
     $this->tables->delete();
 }