You are here

function wsconfig_type_create in Web Service Data 7

Create an new instance of WsConfigType

Parameters

array $values [optional]: Default configuration settings

Return value

object Returns an instance of WsConfigType

1 call to wsconfig_type_create()
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 343
Main module for wsconfig

Code

function wsconfig_type_create($values = array()) {
  return entity_get_controller('wsconfig_type')
    ->create($values);
}