protected function deleteHash($contact_id)
 {
     $contact_settings_model = new waContactSettingsModel();
     $contact_settings_model->delete($contact_id, 'webasyst', 'forgot_password_hash');
 }
Example #2
0
 /**
  * Deletes contact's property relating to specified app.
  *
  * @param string $app_id App id
  * @param string $name Contact property id
  */
 public function delSettings($app_id, $name)
 {
     $setting_model = new waContactSettingsModel();
     $setting_model->delete($this->id, $app_id, $name);
 }