You are here

function wsconfig_save in Web Service Data 7

Saves a wsconfig to the database.

Parameters

$wsconfig: The wsconfig object.

1 call to wsconfig_save()
WsfieldsStorageTestCase::setUp in modules/wsfields_storage/wsfields_storage.test
Sets up a Drupal site for running functional and integration tests.

File

modules/wsconfig/wsconfig.module, line 546
Main module for wsconfig

Code

function wsconfig_save(WsConfig $wsconfig) {
  return $wsconfig
    ->save();
}