function schema_invoke in Schema 5
Same name and namespace in other branches
- 6 schema.module \schema_invoke()
3 calls to schema_invoke()
File
- ./
schema.module, line 135
Code
function schema_invoke($op) {
global $db_type;
$function = 'schema_' . $db_type . '_' . $op;
$args = func_get_args();
array_shift($args);
return call_user_func_array($function, $args);
}