Store the values passed to a toolkit call.

Parameters

$op: One of the image toolkit operations: 'get_info', 'load', 'save', 'settings', 'resize', 'rotate', 'crop', 'desaturate'.

$args: Values passed to hook.

See also

image_test_get_all_calls()

image_test_reset()

8 calls to _image_test_log_call()
image_test_crop in modules/simpletest/tests/image_test.module
Image tookit's crop operation.
image_test_desaturate in modules/simpletest/tests/image_test.module
Image tookit's desaturate operation.
image_test_get_info in modules/simpletest/tests/image_test.module
Image toolkit's get_info operation.
image_test_load in modules/simpletest/tests/image_test.module
Image tookit's load operation.
image_test_resize in modules/simpletest/tests/image_test.module
Image tookit's resize operation.

... See full list

File

modules/simpletest/tests/image_test.module, line 68
Helper module for the image tests.

Code

function _image_test_log_call($op, $args) {
  $results = variable_get('image_test_results', array());
  $results[$op][] = $args;
  variable_set('image_test_results', $results);
}