You are here

function wsconfig_type_save in Web Service Data 7

Saves a wsconfig type to the db.

2 calls to wsconfig_type_save()
drush_wsdata_set_endpoint in ./wsdata.drush.inc
Drush command callback.
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 350
Main module for wsconfig

Code

function wsconfig_type_save(WsConfigType $type) {
  $type
    ->save();
}