You are here

function wsconfig_create in Web Service Data 7

Create a wsconfig object.

2 calls to wsconfig_create()
WsConfigUIController::hook_menu in modules/wsconfig/wsconfig.entity.inc
Overrides hook_menu() defaults. Main reason for doing this is that parent class hook_menu() is optimized for entity type administration.
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 536
Main module for wsconfig

Code

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