You are here

function restful_unprepared_delivery in RESTful 7

Returns data in JSON format not using data preparation in the formatter plugin.

Parameters

$var: (optional) If set, the variable will be converted to JSON and output.

See also

restful_menu_process_callback()

2 string references to 'restful_unprepared_delivery'
restful_menu in ./restful.module
Implements hook_menu().
restful_token_auth_menu_alter in modules/restful_token_auth/restful_token_auth.module
Implements hook_menu_alter().

File

./restful.module, line 687

Code

function restful_unprepared_delivery($var = NULL) {
  restful_delivery($var, 'render');
}